- 博客(10)
- 收藏
- 关注
原创 1015 Reversible Primes (20分)菜鸟解答
1015 Reversible Primes (20分)A reversible prime in any number system is a prime whose “reverse” in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 is also a prime.Now given any two posi
2020-08-06 23:58:48 756
原创 1001 A+B Format (20 分)
1001 A+B Format (20 分)Calculate a+b and output the sum in standard format – that is, the digits must be separated into groups of three by commas (unless there are less than four digits).Input Specif...
2019-08-21 07:45:39 154
原创 1050 螺旋矩阵 (25 分) 最通俗解法(菜鸡版)
1050 螺旋矩阵 (25 分)本题要求将给定的 N 个正整数按非递增的顺序,填入“螺旋矩阵”。所谓“螺旋矩阵”,是指从左上角第 1 个格子开始,按顺时针螺旋方向填充。要求矩阵的规模为 m 行 n 列,满足条件:m×n 等于 N;m≥n;且 m−n 取所有可能值中的最小值。输入格式:输入在第 1 行中给出一个正整数 N,第 2 行给出 N 个待填充的正整数。所有数字不超过 10000,相邻数...
2019-08-20 21:23:16 334 2
原创 1044 火星数字 (20 分)
题目:火星人是以 13 进制计数的:地球人的 0 被火星人称为 tret。地球人数字 1 到 12 的火星文分别为:jan, feb, mar, apr, may, jun, jly, aug, sep, oct, nov, dec。火星人将进位以后的 12 个高位数字分别称为:tam, hel, maa, huh, tou, kes, hei, elo, syy, lok, mer, j...
2019-08-15 20:57:53 378
原创 1041 考试座位号 (15 分)
题目:代码:#include<bits/stdc++.h>using namespace std;struct stu{ long long a; //使用char *s可能出现格式错误,如果是多位数字,最好使用longlong, //标准情况下可容纳64位数字 int b; int c; }s[1001]...
2019-08-11 22:10:02 143
原创 1037 在霍格沃茨找零钱 (20 分)
1037 在霍格沃茨找零钱 (20 分)题目如下答案代码如下:#include<bits/stdc++.h>using namespace std;int main(){ int a1,a2,a3,b1,b2,b3,c1,c2,c3,temp,i; bool flag=false; scanf("%d.%d.%d %d.%d.%d",&a1,&...
2019-08-06 14:46:05 92
原创 201903-1 小中大
CCF资格认证考试试题题目内容如下:解决代码如下:#include<iostream>#include<algorithm> using namespace std;int main(){ int n,i=0; int b; int c; cin>>n; int a[n]; for(i=0;i<n;i++) { scanf...
2019-07-31 12:00:42 91
原创 1017 A除以B(20分)
题目要求本题要求计算 A/B,其中 A 是不超过 1000 位的正整数,B 是 1 位正整数。你需要输出商数 Q 和余数 R,使得 A=B×Q+R 成立。输入格式:输入在一行中依次给出 A 和 B,中间以 1 空格分隔。输出格式:在一行中依次输出 Q 和 R,中间以 1 空格分隔。输入样例:123456789050987654321 7输出样例:17636684150141093...
2019-03-24 14:08:41 123
原创 1016 部分A+B (15 分) 最简单的C语言解法
1016 部分A+B (15 分)正整数 A 的“D (为 1 位整数)部分”定义为由 A 中所有 DA组成的新整数 PA。例如:给定 A=3862767,DA=6,则 A 的“6 部分”PA是 66,因为 A 中有 2 个 6。现给定 A、DA、B、DB,请编写程序计算 PA+PB。输入格式:输入在一行中依次给出 A、DA 、B、DB,中间以空格分隔,其中 0<...
2019-03-21 10:01:36 1331 2
原创 懒惰浣熊的PTA练习第一题——1001 害死人不偿命的(3n+1)猜想
准备机试中(不知道初试能不能过,但是不能浪费时间,再说在家里废了好几天了~呜呜)有很多cs不懂得知识就是从CSDN网站上看到的,因此对它有莫名的好感,于是心血来潮决定一边做题一遍在这里写博客,增强一点仪式感吧,哈哈!注意,本人是入门级萌新,所以不直接刚艰深的国际级题目,而是从乙级中文题入手(猥琐发育中)好,话不多说,第一题:卡拉兹(Callatz)猜想:对任何一个正整数 n,如果它是偶...
2019-01-15 17:53:51 170
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人