USACO Section 1.2.5 Palindromic Squares

题目

<center style="font&#45;size&#58;14px&#59;"> Palindromic Squares
Rob Kolstad </center>

Palindromes are numbers that read the same forwards as backwards. The number 12321 is a typical palindrome.

Given a number base B (2 <= B <= 20 base 10), print all the integers N (1 <= N <= 300 base 10) such that the square of N is palindromic when expressed in base B; also print the value of that palindromic square. Use the letters 'A', 'B', and so on to represent the digits 10, 11, and so on.

Print both the number and its square in base B.

PROGRAM NAME: palsquare

INPUT FORMAT

A single line with B, the base (specified in base 10).

SAMPLE INPUT (file palsquare.in)

10

OUTPUT FORMAT

Lines with two integers represented in base B. The first integer is the number whose square is palindromic; the second integer is the square itself.

SAMPLE OUTPUT (file palsquare.out)

1 1
2 4
3 9
11 121
22 484
26 676
101 10201
111 12321
121 14641
202 40804
212 44944
264 69696

思路

其实这个题目很简单,可是为毛我做了好久呢?其实,主要是我一贯试用cpp的string,这会想练练纯c,突然发现这玩意好繁琐。。又加上边聊边写,于是乎一道水题搞了一个多小时。

学习:
malloc(sizeof(char)*100); // 不清零
calloc(100,sizeof(char)); // 清零
然后,没了。

代码

#include <cstdio>
#include <cstring>
#include <cstdlib>
const int dr[22]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F','G','H','I','J','K'};
const int N=300;
int n;
char * mir(char *a){
	int l=strlen(a);
	char *b=(char*)calloc(22,sizeof(char));
	for (int i(0);i<l;i++) b[i]=a[l-i-1];
	b[l]='\0';
	return b;
}
char * base(int k,int n){
	char *s=(char*)calloc(22,sizeof(char));
	while (k){
		int l=strlen(s);
		s[l]=dr[k%n];
		s[l+1]='\0';
		k/=n;
	}
	return mir(s);
}
int main(){
	freopen("palsquare.in","r",stdin);
	freopen("palsquare.out","w",stdout);
	scanf("%d",&n);
	for (int i(1);i<=N;i++){
		char *b1=base(i,n);
		char *b2=base(i*i,n);
		if (!strcmp(b2,mir(b2))){
		   printf("%s %s\n",b1,b2);
		}
	}
	return 0;
}


全部评论

相关推荐

头像
10-22 20:13
中南大学 Java
序言大家好呀。我是希晨er,一个初入职场的程序猿小登最近上班摸鱼刷到了一篇文章:10年深漂,放弃高薪,回长沙一年有感,还有聊聊30岁大龄程序员过往的心路历程,突然就有点感慨。我如今也做出了和大明哥一样的抉择,只是更早。此外我22年的人生,好像从来没好好记录过。正好现在工作不太忙,就想把这些经历写下来,也希望能得到社区里各位前辈的指点个人背景我是03年出生的西安娃,父母都是普通打工人。刚从中南大学软件工程专业毕业半年,现在在老家的央企过着躺平摆烂的日子成长轨迹从农村到城市的童年我家并不是西安的,只是爸妈在西安上班,从小学之后就把我接到了西安。后来老家房子拆了,爷爷奶奶也搬了过来。农村的生活,我觉...
Yki_:看哭了,恋爱那一段你女朋友说你不够关心她,可你毕竟也愿意遇到矛盾写几千字来和她慢慢分析;说不愿意给她花钱,我感觉可能只是消费观不一样;如果她想留在长沙,也应该提前跟你说开。不过她也许会心疼你放弃大厂offer转向数字马力?我也因为同样的原因有过一段幸福而充满遗憾的感情,不过跟爱情相比确实前途更重要一点。至于offer的选择,换我我也会这么选。把这些旧事记录下来以后,接下来就好好向前看吧,加油兄弟
🍊晨光随笔
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务