当前位置:   article > 正文

PTA|团队程序设计天梯赛-练习集题解(L1)_说明 输出著名短句"hello world"。 输入格式 无 输出格式 输出"hello world

说明 输出著名短句"hello world"。 输入格式 无 输出格式 输出"hello world"。

L1-001 Hello World (5 分)

这道超级简单的题目没有任何输入。

你只需要在一行中输出著名短句“Hello World!”就可以了。

输入样例:

输出样例:

Hello World!
  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<memory.h>
  4. #include<iostream>
  5. #define MAX 100
  6. using namespace std;
  7. void swap(int a, int b){
  8. int t = a;
  9. a = b;
  10. b = t;
  11. }
  12. int main(int argc, char const *argv[])
  13. {
  14. cout << "Hello World!" << endl;
  15. }

L1-002 打印沙漏 (20 分)

本题要求你写个程序把给定的符号打印成沙漏的形状。例如给定17个“*”,要求按下列格式打印

  1. *****
  2. ***
  3. *
  4. ***
  5. *****

所谓“沙漏形状”,是指每行输出奇数个符号;各行符号中心对齐;相邻两行符号数差2;符号数先从大到小顺序递减到1,再从小到大顺序递增;首尾符号数相等。

给定任意N个符号,不一定能正好组成一个沙漏。要求打印出的沙漏能用掉尽可能多的符号。

输入格式:

输入在一行给出1个正整数N(≤1000)和一个符号,中间以空格分隔。

输出格式:

首先打印出由给定符号组成的最大的沙漏形状,最后在一行中输出剩下没用掉的符号数。

输入样例:

  1. 19 *

输出样例:

  1. *****
  2. ***
  3. *
  4. ***
  5. *****
  6. 2
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. int n, i = 1, j, d, max, sum = 1;
  6. char a;
  7. cin >> n >> a;
  8. while(1)
  9. {
  10. i += 2;
  11. if(sum + i * 2 > n)
  12. {
  13. max = i-2;
  14. d = n - sum;
  15. break;
  16. }
  17. sum += i*2;
  18. }
  19. for(i = max; i >= 1; i -= 2)
  20. {
  21. for(j = 0; j < max; j++)
  22. {
  23. if(j < (max-i) / 2)
  24. cout << " ";
  25. else if(j >= (max+i) / 2)
  26. break;
  27. else
  28. cout << a;
  29. }
  30. cout << endl;
  31. }
  32. for(i = 3; i <= max; i += 2)
  33. {
  34. for(j = 0; j < max; j++)
  35. {
  36. if(j < (max-i) / 2)
  37. cout << " ";
  38. else if(j >= (max+i) / 2)
  39. break;
  40. else
  41. cout << a;
  42. }
  43. cout << endl;
  44. }
  45. cout << d << endl;
  46. }

L1-003 个位数统计 (15 分)

给定一个 k 位整数 N=d​k−1​​10​k−1​​+⋯+d​1​​10​1​​+d​0​​ (0≤d​i​​≤9, i=0,⋯,k−1, d​k−1​​>0),请编写程序统计每种不同的个位数字出现的次数。例如:给定 N=100311,则有 2 个 0,3 个 1,和 1 个 3。

输入格式:

每个输入包含 1 个测试用例,即一个不超过 1000 位的正整数 N。

输出格式:

对 N 中每一种不同的个位数字,以 D:M 的格式在一行中输出该位数字 D 及其在 N 中出现的次数 M。要求按 D 的升序输出。

输入样例:

100311

输出样例:

  1. 0:2
  2. 1:3
  3. 3:1
  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<string.h>
  6. #define MAX 1005
  7. using namespace std;
  8. int main(int argc, char const *argv[])
  9. {
  10. char ch[MAX];
  11. int num[MAX];
  12. memset(ch, 0, sizeof(ch));
  13. memset(num, 0, sizeof(num));
  14. while(scanf("%s", &ch) != EOF){
  15. int len = strlen(ch);
  16. for(int i = 0; i < len; ++i){
  17. num[ch[i]-'0']++;
  18. }
  19. for(int i = 0; i < 10; ++i){
  20. if(num[i] == 0)
  21. continue;
  22. cout << i << ':' << num[i] << endl;
  23. }
  24. }
  25. }

L1-004 计算摄氏温度 (5 分)

给定一个华氏温度F,本题要求编写程序,计算对应的摄氏温度C。计算公式:C=5×(F−32)/9。题目保证输入与输出均在整型范围内。

输入格式:

输入在一行中给出一个华氏温度。

输出格式:

在一行中按照格式“Celsius = C”输出对应的摄氏温度C的整数值。

输入样例:

150

输出样例:

Celsius = 65
  1. #include<stdio.h>
  2. #include<iostream>
  3. #include<memory.h>
  4. #include<string.h>
  5. using namespace std;
  6. int main(int argc, char const *argv[])
  7. {
  8. int T;
  9. cin >> T;
  10. int C = 5 * (T - 32) / 9;
  11. cout << "Celsius = " << C <<endl;
  12. return 0;
  13. }

 

L1-005 考试座位号 (15 分)

每个 PAT 考生在参加考试时都会被分配两个座位号,一个是试机座位,一个是考试座位。正常情况下,考生在入场时先得到试机座位号码,入座进入试机状态后,系统会显示该考生的考试座位号码,考试时考生需要换到考试座位就座。但有些考生迟到了,试机已经结束,他们只能拿着领到的试机座位号码求助于你,从后台查出他们的考试座位号码。

输入格式:

输入第一行给出一个正整数 N(≤1000),随后 N 行,每行给出一个考生的信息:准考证号 试机座位号 考试座位号。其中准考证号由 16 位数字组成,座位从 1 到 N 编号。输入保证每个人的准考证号都不同,并且任何时候都不会把两个人分配到同一个座位上。

考生信息之后,给出一个正整数 M(≤N),随后一行中给出 M 个待查询的试机座位号码,以空格分隔。

输出格式:

对应每个需要查询的试机座位号码,在一行中输出对应考生的准考证号和考试座位号码,中间用 1 个空格分隔。

输入样例:

  1. 4
  2. 3310120150912233 2 4
  3. 3310120150912119 4 1
  4. 3310120150912126 1 3
  5. 3310120150912002 3 2
  6. 2
  7. 3 4

输出样例:

  1. 3310120150912002 2
  2. 3310120150912119 1
  1. #include<stdio.h>
  2. #include<iostream>
  3. #include<memory.h>
  4. #include<string.h>
  5. #define MAX 1005
  6. using namespace std;
  7. int main(int argc, char const *argv[])
  8. {
  9. int T;
  10. cin >> T;
  11. char num[MAX][15];
  12. int per[MAX], now[MAX],ru[MAX];
  13. memset(num, 0, sizeof(num));
  14. memset(per, 0, sizeof(per));
  15. memset(now, 0, sizeof(now));
  16. for(int i = 1; i <= T; ++i){
  17. scanf("%s %d %d", &num[i], &per[i], &now[i]);
  18. }
  19. int res = 0;
  20. cin >> res;
  21. for(int i = 1; i <= res; ++i){
  22. cin >> ru[i];
  23. }
  24. for(int i = 1; i <= res; ++i){
  25. for(int j = 1; j <= T; ++j){
  26. if(ru[i] == per[j])
  27. cout << num[j] << " " << now[j] << endl;
  28. }
  29. }
  30. return 0;
  31. }

 

L1-006 连续因子 (20 分)

一个正整数 N 的因子中可能存在若干连续的数字。例如 630 可以分解为 3×5×6×7,其中 5、6、7 就是 3 个连续的数字。给定任一正整数 N,要求编写程序求出最长连续因子的个数,并输出最小的连续因子序列。

输入格式:

输入在一行中给出一个正整数 N(1<N<2​31​​)。

输出格式:

首先在第 1 行输出最长连续因子的个数;然后在第 2 行中按 因子1*因子2*……*因子k 的格式输出最小的连续因子序列,其中因子按递增顺序输出,1 不算在内。

输入样例:

630

输出样例:

  1. 3
  2. 5*6*7

 

  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<memory.h>
  4. #include<math.h>
  5. #include<iostream>
  6. #define MAX 1005
  7. using namespace std;
  8. int main(int argc, char const *argv[])
  9. {
  10. int T;
  11. cin >> T;
  12. int max = sqrt(T);
  13. for(int len = 12; len >= 1; --len){
  14. for(int start = 2; start <= max; ++start){
  15. long long int ans = 1;
  16. for(int i = start; i - start <= len - 1; ++i)
  17. ans *= i;
  18. if(T % ans == 0){
  19. printf("%d\n%d", len, start);
  20. for(int i = start + 1; i - start <= len - 1; ++i)
  21. printf("*%d", i);
  22. return 0;
  23. }
  24. }
  25. }
  26. printf("1\n%d", T);
  27. return 0;
  28. }

 

L1-007 念数字 (10 分)

输入一个整数,输出每个数字对应的拼音。当整数为负数时,先输出fu字。十个数字对应的拼音如下:

  1. 0: ling
  2. 1: yi
  3. 2: er
  4. 3: san
  5. 4: si
  6. 5: wu
  7. 6: liu
  8. 7: qi
  9. 8: ba
  10. 9: jiu

输入格式:

输入在一行中给出一个整数,如:1234

提示:整数包括负数、零和正数。

输出格式:

在一行中输出这个整数对应的拼音,每个数字的拼音之间用空格分开,行末没有最后的空格。如 yi er san si

输入样例:

-600

输出样例:

fu liu ling ling
  1. #include<stdio.h>
  2. #include<iostream>
  3. #include<memory.h>
  4. #include<string.h>
  5. #define MAX 1005
  6. using namespace std;
  7. int main(int argc, char const *argv[])
  8. {
  9. char num[MAX];
  10. scanf("%s", &num);
  11. int len_num = strlen(num);
  12. for(int i = 0; i < len_num-1; ++i){
  13. if(num[i] == '1')
  14. printf("yi ");
  15. if(num[i] == '2')
  16. printf("er ");
  17. if(num[i] == '3')
  18. printf("san ");
  19. if(num[i] == '4')
  20. printf("si ");
  21. if(num[i] == '5')
  22. printf("wu ");
  23. if(num[i] == '6')
  24. printf("liu ");
  25. if(num[i] == '7')
  26. printf("qi ");
  27. if(num[i] == '8')
  28. printf("ba ");
  29. if(num[i] == '9')
  30. printf("jiu ");
  31. if(num[i] == '0')
  32. printf("ling ");
  33. if(num[i] == '-')
  34. printf("fu ");
  35. }
  36. if(num[len_num-1] == '1')
  37. printf("yi\n");
  38. if(num[len_num-1] == '2')
  39. printf("er\n");
  40. if(num[len_num-1] == '3')
  41. printf("san\n");
  42. if(num[len_num-1] == '4')
  43. printf("si\n");
  44. if(num[len_num-1] == '5')
  45. printf("wu\n");
  46. if(num[len_num-1] == '6')
  47. printf("liu\n");
  48. if(num[len_num-1] == '7')
  49. printf("qi\n");
  50. if(num[len_num-1] == '8')
  51. printf("ba\n");
  52. if(num[len_num-1] == '9')
  53. printf("jiu\n");
  54. if(num[len_num-1] == '0')
  55. printf("ling\n");
  56. if(num[len_num-1] == '-')
  57. printf("fu\n");
  58. return 0;
  59. }

L1-008 求整数段和 (10 分)

给定两个整数A和B,输出从A到B的所有整数以及这些数的和。

输入格式:

输入在一行中给出2个整数A和B,其中−100≤A≤B≤100,其间以空格分隔。

输出格式:

首先顺序输出从A到B的所有整数,每5个数字占一行,每个数字占5个字符宽度,向右对齐。最后在一行中按Sum = X的格式输出全部数字的和X

输入样例:

-3 8

输出样例:

  1. -3 -2 -1 0 1
  2. 2 3 4 5 6
  3. 7 8
  4. Sum = 30
  1. #include<stdio.h>
  2. #include<iostream>
  3. #include<memory.h>
  4. #include<string.h>
  5. #define MAX 1005
  6. using namespace std;
  7. int main(int argc, char const *argv[])
  8. {
  9. int a, b;
  10. cin >> a >> b;
  11. int sum = 0;
  12. int count = 0;
  13. for(int i = a; i <= b; ++i)
  14. {
  15. sum += i;
  16. count++;
  17. }
  18. int flag = 1;
  19. for(int i = a; i < b; ++i){
  20. if(flag != 5)
  21. {
  22. printf("%5d", i);
  23. flag++;
  24. }
  25. else{
  26. printf("%5d\n", i);
  27. flag = 1;
  28. }
  29. }
  30. printf("%5d\n", b);
  31. printf("Sum = %d\n", sum);
  32. return 0;
  33. }

L1-009 N个数求和 (20 分)

本题的要求很简单,就是求N个数字的和。麻烦的是,这些数字是以有理数分子/分母的形式给出的,你输出的和也必须是有理数的形式。

输入格式:

输入第一行给出一个正整数N(≤100)。随后一行按格式a1/b1 a2/b2 ...给出N个有理数。题目保证所有分子和分母都在长整型范围内。另外,负数的符号一定出现在分子前面。

输出格式:

输出上述数字和的最简形式 —— 即将结果写成整数部分 分数部分,其中分数部分写成分子/分母,要求分子小于分母,且它们没有公因子。如果结果的整数部分为0,则只输出分数部分。

输入样例1:

  1. 5
  2. 2/5 4/15 1/30 -2/60 8/3

输出样例1:

3 1/3

输入样例2:

  1. 2
  2. 4/3 2/3

输出样例2:

2

输入样例3:

  1. 3
  2. 1/3 -1/6 1/8

输出样例3:

7/24
  1. #include<stdio.h>
  2. #include<iostream>
  3. #include<memory.h>
  4. #include<string.h>
  5. #define MAX 1005
  6. using namespace std;
  7. long long int gcd(long long int x, long long int y){
  8. while(y == 0)
  9. return x;
  10. return gcd(y, x%y);
  11. }
  12. int main(int argc, char const *argv[])
  13. {
  14. int T;
  15. cin >> T;
  16. long long int son[MAX], mon[MAX];
  17. for(int i = 0; i < T; ++i){
  18. scanf("%lld/%lld", &son[i], &mon[i]);
  19. }
  20. long long int g = 0;
  21. for(int i = 0; i < T-1; ++i){
  22. if(mon[i] == 0 || mon[i+1] == 0)
  23. continue;
  24. g = mon[i] / gcd(mon[i], mon[i + 1]) * mon[i + 1];
  25. }
  26. if(g != 0){
  27. for(int i = 0; i < T; ++i){
  28. son[i] *= g / mon[i];
  29. }
  30. long long int sum = 0;
  31. for(int i = 0; i < T; ++i){
  32. //cout << son[i] << endl;
  33. sum += son[i];
  34. }
  35. if(sum % g == 0)
  36. cout << sum/g << endl;
  37. else{
  38. if(sum / g != 0)
  39. cout << sum /g << " ";
  40. long long int temp = sum % g;
  41. long long int res = gcd(temp, g);
  42. cout << temp / res << "/" << g / res << endl;
  43. }
  44. }
  45. else{
  46. cout << 0 << endl;
  47. }
  48. return 0;
  49. }

L1-010 比较大小 (10 分)

本题要求将输入的任意3个整数从小到大输出。

输入格式:

输入在一行中给出3个整数,其间以空格分隔。

输出格式:

在一行中将3个整数从小到大输出,其间以“->”相连。

输入样例:

4 2 8

输出样例:

2->4->8
  1. #include<stdio.h>
  2. #include<iostream>
  3. #include<algorithm>
  4. #include<memory.h>
  5. #include<string.h>
  6. #define MAX 5
  7. using namespace std;
  8. int main(int argc, char const *argv[])
  9. {
  10. int a[MAX];
  11. memset(a, 0, sizeof(a));
  12. for(int i = 0; i < 3; ++i){
  13. cin >> a[i];
  14. }
  15. sort(a, a+3);
  16. for(int i = 0; i < 2; ++i){
  17. cout << a[i] << "->";
  18. }
  19. cout << a[2] <<endl;
  20. return 0;
  21. }

 

L1-011 A-B (20 分)

本题要求你计算A−B。不过麻烦的是,A和B都是字符串 —— 即从字符串A中把字符串B所包含的字符全删掉,剩下的字符组成的就是字符串A−B。

输入格式:

输入在2行中先后给出字符串A和B。两字符串的长度都不超过10​4​​,并且保证每个字符串都是由可见的ASCII码和空白字符组成,最后以换行符结束。

输出格式:

在一行中打印出A−B的结果字符串。

输入样例:

  1. I love GPLT! It's a fun game!
  2. aeiou

输出样例:

I lv GPLT!  It's  fn gm!
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. string A, B;
  10. int flag[MAX];
  11. memset(flag, 0, sizeof(flag));
  12. getline(cin, A); //getline函数,用于读取一行字符串
  13. getline(cin, B);
  14. for(int i = 0; i < A.length(); ++i){
  15. for(int j = 0; j < B.length(); ++j){
  16. if(A[i] == B[j])
  17. flag[i] = 1;
  18. }
  19. }
  20. for(int i = 0; i < A.length(); ++i){
  21. if(flag[i] != 1)
  22. cout << A[i];
  23. }
  24. cout << endl;
  25. return 0;
  26. }

 

L1-012 计算指数 (5 分)

真的没骗你,这道才是简单题 —— 对任意给定的不超过 10 的正整数 n,要求你输出 2​n​​。不难吧?

输入格式:

输入在一行中给出一个不超过 10 的正整数 n。

输出格式:

在一行中按照格式 2^n = 计算结果 输出 2​n​​ 的值。

输入样例:

5

输出样例:

2^5 = 32
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int pow(int a, int b){
  8. int ans = 1;
  9. for(int i = 1; i <= b; ++i){
  10. ans *= a;
  11. }
  12. return ans;
  13. }
  14. int main(int argc, char const *argv[])
  15. {
  16. int n;
  17. cin >> n;
  18. cout << "2^" << n << " = " << pow(2, n);
  19. }

 

L1-013 计算阶乘和 (10 分)

对于给定的正整数N,需要你计算 S=1!+2!+3!+...+N!。

输入格式:

输入在一行中给出一个不超过10的正整数N。

输出格式:

在一行中输出S的值。

输入样例:

3

输出样例:

9
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. int n;
  10. cin >> n;
  11. int sum = 0;
  12. for(int i = 1; i <= n; ++i){
  13. int ans = 1;
  14. for(int j = i; j >= 1; --j){
  15. ans *= j;
  16. }
  17. sum += ans;
  18. }
  19. cout << sum << endl;
  20. }

 

L1-014 简单题 (5 分)

这次真的没骗你 —— 这道超级简单的题目没有任何输入。

你只需要在一行中输出事实:This is a simple problem. 就可以了。

输入样例:

输出样例:

This is a simple problem.

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. cout << "This is a simple problem." << endl;
  10. }

 

L1-015 跟奥巴马一起画方块 (15 分)

美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014年底,为庆祝“计算机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧!

输入格式:

输入在一行中给出正方形边长N(3≤N≤21)和组成正方形边的某种字符C,间隔一个空格。

输出格式:

输出由给定字符C画出的正方形。但是注意到行间距比列间距大,所以为了让结果看上去更像正方形,我们输出的行数实际上是列数的50%(四舍五入取整)。

输入样例:

10 a

输出样例:

  1. aaaaaaaaaa
  2. aaaaaaaaaa
  3. aaaaaaaaaa
  4. aaaaaaaaaa
  5. aaaaaaaaaa
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. int n;
  10. char ch;
  11. cin >> n >> ch;
  12. double m = (double)n / 2;
  13. int tem = (int) n / 2;
  14. if(m - tem >= 0.5){
  15. tem += 1;
  16. }else{
  17. tem = tem;
  18. }
  19. for(int i = 0; i < tem; ++i){
  20. for(int j = 0; j < n; ++j){
  21. printf("%c", ch);
  22. }
  23. printf("\n");
  24. }
  25. }

L1-016 查验身份证 (15 分)

一个合法的身份证号码由17位地区、日期编号和顺序编号加1位校验码组成。校验码的计算规则如下:

首先对前17位数字加权求和,权重分配为:{7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};然后将计算的和对11取模得到值Z;最后按照以下关系对应Z值与校验码M的值:

  1. Z:0 1 2 3 4 5 6 7 8 9 10
  2. M:1 0 X 9 8 7 6 5 4 3 2

现在给定一些身份证号码,请你验证校验码的有效性,并输出有问题的号码。

输入格式:

输入第一行给出正整数N(≤100)是输入的身份证号码的个数。随后N行,每行给出1个18位身份证号码。

输出格式:

按照输入的顺序每行输出1个有问题的身份证号码。这里并不检验前17位是否合理,只检查前17位是否全为数字且最后1位校验码计算准确。如果所有号码都正常,则输出All passed

输入样例1:

  1. 4
  2. 320124198808240056
  3. 12010X198901011234
  4. 110108196711301866
  5. 37070419881216001X

输出样例1:

  1. 12010X198901011234
  2. 110108196711301866
  3. 37070419881216001X

输入样例2:

  1. 2
  2. 320124198808240056
  3. 110108196711301862

输出样例2:

All passed
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. int T;
  10. cin >> T;
  11. int flag[MAX];
  12. memset(flag, 0, sizeof(flag));
  13. int weigh[] = {7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};
  14. char card[MAX][20];
  15. memset(card, 0, sizeof(card));
  16. for(int i = 0; i < T; ++i){
  17. scanf("%s", &card[i]);
  18. }
  19. for(int j = 0; j < T; ++j){
  20. for(int i = 0; i < 17; ++i){
  21. if(card[j][i] < '0' || card[j][i] > '9')
  22. flag[j] = 1;
  23. }
  24. }
  25. for(int i = 0; i < T; ++i){
  26. int sum = 0;
  27. for(int j = 0; j < 17; ++j){
  28. sum += weigh[j] * (card[i][j] - '0');
  29. }
  30. int t = sum % 11;
  31. char t_ch;
  32. if(t == 1){
  33. t_ch = '0';
  34. }else if(t == 0){
  35. t_ch = '1';
  36. }else if(t == 2){
  37. t_ch = 'X';
  38. }else if(t == 3){
  39. t_ch = '9';
  40. }else if(t == 4){
  41. t_ch = '8';
  42. }else if(t == 5){
  43. t_ch = '7';
  44. }else if(t == 6){
  45. t_ch = '6';
  46. }else if(t == 7){
  47. t_ch = '5';
  48. }else if(t == 8){
  49. t_ch = '4';
  50. }else if(t == 9){
  51. t_ch = '3';
  52. }else if(t == 10){
  53. t_ch = '2';
  54. }
  55. if(t_ch != card[i][17]){
  56. flag[i] = 1;
  57. }
  58. }
  59. int flag2 = 0;
  60. for(int i = 0; i < T; ++i){
  61. if(flag[i] == 1)
  62. flag2 = 1;
  63. }
  64. if(flag2){
  65. for(int i = 0; i < T; ++i){
  66. if(flag[i] == 1){
  67. for(int j = 0; j < 18; ++j)
  68. cout << card[i][j];
  69. cout << endl;
  70. }
  71. }
  72. }else
  73. cout << "All passed" <<endl;
  74. }

 

L1-017 到底有多二 (15 分)

一个整数“犯二的程度”定义为该数字中包含2的个数与其位数的比值。如果这个数是负数,则程度增加0.5倍;如果还是个偶数,则再增加1倍。例如数字-13142223336是个11位数,其中有3个2,并且是负数,也是偶数,则它的犯二程度计算为:3/11×1.5×2×100%,约为81.82%。本题就请你计算一个给定整数到底有多二。

输入格式:

输入第一行给出一个不超过50位的整数N

输出格式:

在一行中输出N犯二的程度,保留小数点后两位。

输入样例:

-13142223336

输出样例:

81.82%

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. string num;
  10. double per = 1;
  11. int ans = 0;
  12. int sum = 0;
  13. getline(cin, num);
  14. if(num[0] == '-'){
  15. per *= 1.5;
  16. sum = num.length() - 1;
  17. }else{
  18. sum = num.length();
  19. }
  20. if(num[num.length() - 1] % 2 == 0)
  21. per *= 2;
  22. for(int i = 0; i < num.length(); ++i){
  23. if(num[i] == '2')
  24. ans++;
  25. }
  26. // cout << ans << " " << sum << endl;
  27. double two = (double)ans / sum;
  28. two = two * per * 100;
  29. //cout << per << endl;
  30. printf("%.2lf", two);
  31. cout << "%" <<endl;
  32. }

L1-018 大笨钟 (10 分)

微博上有个自称“大笨钟V”的家伙,每天敲钟催促码农们爱惜身体早点睡觉。不过由于笨钟自己作息也不是很规律,所以敲钟并不定时。一般敲钟的点数是根据敲钟时间而定的,如果正好在某个整点敲,那么“当”数就等于那个整点数;如果过了整点,就敲下一个整点数。另外,虽然一天有24小时,钟却是只在后半天敲1~12下。例如在23:00敲钟,就是“当当当当当当当当当当当”,而到了23:01就会是“当当当当当当当当当当当当”。在午夜00:00到中午12:00期间(端点时间包括在内),笨钟是不敲的。

下面就请你写个程序,根据当前时间替大笨钟敲钟。

输入格式:

输入第一行按照hh:mm的格式给出当前时间。其中hh是小时,在00到23之间;mm是分钟,在00到59之间。

输出格式:

根据当前时间替大笨钟敲钟,即在一行中输出相应数量个Dang。如果不是敲钟期,则输出:

Only hh:mm.  Too early to Dang.

其中hh:mm是输入的时间。

输入样例1:

19:05

输出样例1:

DangDangDangDangDangDangDangDang

输入样例2:

07:05

输出样例2:

Only 07:05.  Too early to Dang.
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. int hou, min;
  10. scanf("%d:%d", &hou, &min);
  11. if(hou == 0 && min == 0){
  12. printf("Only 00:00. Too early to Dang.");
  13. }else if(hou == 0 && min < 10){
  14. printf("Only 00:0%d. Too early to Dang.",min);
  15. }else if(hou == 0 && min >= 10){
  16. printf("Only 00:%d. Too early to Dang.",min);
  17. }else if(hou > 0 && hou <= 9 && min < 10){
  18. printf("Only 0%d:0%d. Too early to Dang.",hou, min);
  19. }else if(hou > 0 && hou <= 9 && min >= 10){
  20. printf("Only 0%d:%d. Too early to Dang.",hou, min);
  21. }else if(hou > 9 && hou < 12 && min < 10){
  22. printf("Only %d:0%d. Too early to Dang.",hou, min);
  23. }else if(hou > 9 && hou < 12 && min >= 10){
  24. printf("Only %d:%d. Too early to Dang.",hou, min);
  25. }else if(hou == 12 && min == 0){
  26. printf("Only 12:00. Too early to Dang.");
  27. }else{
  28. if(min > 0){
  29. for(int i = 0; i <= hou - 12; ++i){
  30. cout <<"Dang";
  31. }
  32. cout <<endl;
  33. }else{
  34. for(int i = 0; i <= hou - 1 - 12; ++i){
  35. cout <<"Dang";
  36. }
  37. cout << endl;
  38. }
  39. }
  40. }

 

L1-019 谁先倒 (15 分)

划拳是古老中国酒文化的一个有趣的组成部分。酒桌上两人划拳的方法为:每人口中喊出一个数字,同时用手比划出一个数字。如果谁比划出的数字正好等于两人喊出的数字之和,谁就输了,输家罚一杯酒。两人同赢或两人同输则继续下一轮,直到唯一的赢家出现。

下面给出甲、乙两人的酒量(最多能喝多少杯不倒)和划拳记录,请你判断两个人谁先倒。

输入格式:

输入第一行先后给出甲、乙两人的酒量(不超过100的非负整数),以空格分隔。下一行给出一个正整数N(≤100),随后N行,每行给出一轮划拳的记录,格式为:

甲喊 甲划 乙喊 乙划

其中是喊出的数字,是划出的数字,均为不超过100的正整数(两只手一起划)。

输出格式:

在第一行中输出先倒下的那个人:A代表甲,B代表乙。第二行中输出没倒的那个人喝了多少杯。题目保证有一个人倒下。注意程序处理到有人倒下就终止,后面的数据不必处理。

输入样例:

  1. 1 1
  2. 6
  3. 8 10 9 12
  4. 5 10 5 10
  5. 3 8 5 12
  6. 12 18 1 13
  7. 4 16 12 15
  8. 15 1 1 16

输出样例:

  1. A
  2. 1
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. int cap_1 = 0, cap_2 = 0;
  10. cin >> cap_1 >> cap_2;
  11. int T;
  12. int dir_1 = 0, dir_2 = 0;
  13. cin >> T;
  14. int say_1[MAX], say_2[MAX], drink_1[MAX], drink_2[MAX];
  15. memset(say_1, 0, sizeof(say_1));
  16. memset(say_2, 0, sizeof(say_2));
  17. memset(drink_1, 0, sizeof(drink_1));
  18. memset(drink_2, 0, sizeof(drink_2));
  19. for(int i = 0; i < T; ++i){
  20. cin >> say_1[i] >> drink_1[i] >> say_2[i] >> drink_2[i];
  21. }
  22. for(int i = 0; i < T; ++i){
  23. if(cap_1 < 0 || cap_2 < 0)
  24. break;
  25. if(say_1[i] + say_2[i] == drink_1[i] && say_1[i] + say_2[i] == drink_2[i])
  26. continue;
  27. if(say_1[i] + say_2[i] != drink_1[i] && say_1[i] + say_2[i] != drink_2[i])
  28. continue;
  29. if(say_1[i] + say_2[i] == drink_1[i] && say_1[i] + say_2[i] != drink_2[i]){
  30. cap_1--;
  31. dir_1++;
  32. }
  33. if(say_1[i] + say_2[i] != drink_1[i] && say_1[i] + say_2[i] == drink_2[i]){
  34. cap_2--;
  35. dir_2++;
  36. }
  37. }
  38. if(cap_1 < 0){
  39. cout << "A" << endl;
  40. cout << dir_2 <<endl;
  41. }
  42. else{
  43. cout << "B" << endl;
  44. cout << dir_1 <<endl;
  45. }
  46. }

 

L1-020 帅到没朋友 (20 分)

当芸芸众生忙着在朋友圈中发照片的时候,总有一些人因为太帅而没有朋友。本题就要求你找出那些帅到没有朋友的人。

输入格式:

输入第一行给出一个正整数N(≤100),是已知朋友圈的个数;随后N行,每行首先给出一个正整数K(≤1000),为朋友圈中的人数,然后列出一个朋友圈内的所有人——为方便起见,每人对应一个ID号,为5位数字(从00000到99999),ID间以空格分隔;之后给出一个正整数M(≤10000),为待查询的人数;随后一行中列出M个待查询的ID,以空格分隔。

注意:没有朋友的人可以是根本没安装“朋友圈”,也可以是只有自己一个人在朋友圈的人。虽然有个别自恋狂会自己把自己反复加进朋友圈,但题目保证所有K超过1的朋友圈里都至少有2个不同的人。

输出格式:

按输入的顺序输出那些帅到没朋友的人。ID间用1个空格分隔,行的首尾不得有多余空格。如果没有人太帅,则输出No one is handsome

注意:同一个人可以被查询多次,但只输出一次。

输入样例1:

  1. 3
  2. 3 11111 22222 55555
  3. 2 33333 44444
  4. 4 55555 66666 99999 77777
  5. 8
  6. 55555 44444 10000 88888 22222 11111 23333 88888

输出样例1:

10000 88888 23333

输入样例2:

  1. 3
  2. 3 11111 22222 55555
  3. 2 33333 44444
  4. 4 55555 66666 99999 77777
  5. 4
  6. 55555 44444 22222 11111

输出样例2:

No one is handsome
  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<memory.h>
  4. #include<math.h>
  5. #include<iostream>
  6. #define MAX 1000005
  7. using namespace std;
  8. int visit[MAX];
  9. int main(int argc, char const *argv[])
  10. {
  11. int n, m, k, id;
  12. cin >> n;
  13. memset(visit, 0, sizeof(visit));
  14. for(int i = 0; i < n; ++i){
  15. scanf("%d", &k);
  16. for(int j = 0; j < k; ++j){
  17. scanf("%d", &id);
  18. if(k == 1)
  19. break;
  20. visit[id] = 1;
  21. }
  22. }
  23. cin >> m;
  24. int pre_id, flag = 0;
  25. for(int i = 0; i < m; ++i){
  26. cin >> pre_id;
  27. if(!visit[pre_id]){
  28. if(++flag > 1)
  29. printf(" ");
  30. printf("%05d", pre_id);
  31. visit[pre_id] = 1;
  32. }
  33. }
  34. if(flag == 0)
  35. cout << "No one is handsome" << endl;
  36. }

 

L1-021 重要的话说三遍 (5 分)

这道超级简单的题目没有任何输入。

你只需要把这句很重要的话 —— “I'm gonna WIN!”——连续输出三遍就可以了。

注意每遍占一行,除了每行的回车不能有任何多余字符。

输入样例:

输出样例:

  1. I'm gonna WIN!
  2. I'm gonna WIN!
  3. I'm gonna WIN!

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. cout << "I'm gonna WIN!" <<endl;
  10. cout << "I'm gonna WIN!" <<endl;
  11. cout << "I'm gonna WIN!" <<endl;
  12. }

L1-022 奇偶分家 (10 分)

给定N个正整数,请统计奇数和偶数各有多少个?

输入格式:

输入第一行给出一个正整N(≤1000);第2行给出N个非负整数,以空格分隔。

输出格式:

在一行中先后输出奇数的个数、偶数的个数。中间以1个空格分隔。

输入样例:

  1. 9
  2. 88 74 101 26 15 0 34 22 77

输出样例:

3 6
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. int T;
  10. cin >> T;
  11. int num[MAX];
  12. for(int i = 0; i < T; ++i){
  13. cin >> num[i];
  14. }
  15. int odd = 0, ou = 0;
  16. for(int i = 0; i < T; ++i){
  17. if(num[i]%2)
  18. odd++;
  19. else
  20. ou++;
  21. }
  22. cout << odd << " " << ou << endl;
  23. }

 

L1-023 输出GPLT (20 分)

给定一个长度不超过10000的、仅由英文字母构成的字符串。请将字符重新调整顺序,按GPLTGPLT....这样的顺序输出,并忽略其它字符。当然,四种字符(不区分大小写)的个数不一定是一样多的,若某种字符已经输出完,则余下的字符仍按GPLT的顺序打印,直到所有字符都被输出。

输入格式:

输入在一行中给出一个长度不超过10000的、仅由英文字母构成的非空字符串。

输出格式:

在一行中按题目要求输出排序后的字符串。题目保证输出非空。

输入样例:

pcTclnGloRgLrtLhgljkLhGFauPewSKgt

输出样例:

GPLTGPLTGLTGLGLL
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. string sen;
  10. getline(cin, sen);
  11. int g = 0, p = 0, l = 0, t = 0;
  12. for(int i = 0; i < sen.length(); ++i){
  13. if(sen[i] == 'g' || sen[i] == 'G')
  14. g++;
  15. else if(sen[i] == 'p' || sen[i] == 'P')
  16. p++;
  17. else if(sen[i] == 'l' || sen[i] == 'L')
  18. l++;
  19. else if(sen[i] == 't' || sen[i] == 'T')
  20. t++;
  21. }
  22. while(g != 0 || p != 0 || l != 0 || t != 0){
  23. if(g != 0){
  24. cout << 'G';
  25. g--;
  26. }
  27. if(p != 0){
  28. cout << 'P';
  29. p--;
  30. }
  31. if(l != 0){
  32. cout << 'L';
  33. l--;
  34. }
  35. if(t != 0){
  36. cout << 'T';
  37. t--;
  38. }
  39. }
  40. }

L1-024 后天 (5 分)

如果今天是星期三,后天就是星期五;如果今天是星期六,后天就是星期一。我们用数字1到7对应星期一到星期日。给定某一天,请你输出那天的“后天”是星期几。

输入格式:

输入第一行给出一个正整数D(1 ≤ D ≤ 7),代表星期里的某一天。

输出格式:

在一行中输出D天的后天是星期几。

输入样例:

3

输出样例:

5

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. int day;
  10. cin >> day;
  11. if(day == 6)
  12. cout << 1 << endl;
  13. else if(day == 7)
  14. cout << 2 << endl;
  15. else
  16. cout << day + 2 << endl;
  17. }

 

L1-025 正整数A+B (15 分)

题的目标很简单,就是求两个正整数AB的和,其中AB都在区间[1,1000]。稍微有点麻烦的是,输入并不保证是两个正整数。

输入格式:

输入在一行给出AB,其间以空格分开。问题是AB不一定是满足要求的正整数,有时候可能是超出范围的数字、负数、带小数点的实数、甚至是一堆乱码。

注意:我们把输入中出现的第1个空格认为是AB的分隔。题目保证至少存在一个空格,并且B不是一个空字符串。

输出格式:

如果输入的确是两个正整数,则按格式A + B = 和输出。如果某个输入不合要求,则在相应位置输出?,显然此时和也是?

 

  1. #include<iostream>
  2. #include<string>
  3. using namespace std;
  4. int main()
  5. {
  6. string S;
  7. int flagA = 0, flagB = 0;
  8. getline(cin,S);//使用getline来接收包括空格在内的字符
  9. int sumA = 0, sumB = 0, Base;
  10. for (int i =0; i <S.length(); i++)
  11. {
  12. if(S[i]==' ')//碰到第一个空格
  13. {
  14. Base = 1;//初始化
  15. for(int j=i-1;j>=0;j--)//计算A,注意j的范围从前一个字符到0
  16. {
  17. if (S[j]<'0' || S[j]>'9')//如果字符不为数字
  18. {
  19. flagA = 1;
  20. break;//标识,退出
  21. }
  22. else
  23. {
  24. sumA += Base*(S[j] - '0');//如果为数字,累加
  25. Base *= 10;
  26. }
  27. if(i==0)//如果第一个字符是空格
  28. {
  29. flagA=1;
  30. break;//标识,退出
  31. }
  32. }
  33. if (sumA>1000||sumA==0)//如果累加和不在0到1000范围内
  34. flagA = 1;
  35. Base = 1;//注意重新初始化
  36. for(int j=S.length()-1;j>i;j--)//计算B,注意j的范围从最后一个字符到i+1
  37. {
  38. if (S[j]<'0' || S[j]>'9')
  39. {
  40. flagB = 1;
  41. break;
  42. }
  43. else
  44. {
  45. sumB += Base*(S[j] - '0');
  46. Base *= 10;
  47. }
  48. }
  49. if (sumB>1000||sumB==0)
  50. flagB = 1;
  51. break;
  52. }
  53. }
  54. if (flagA)
  55. {
  56. if (flagB)
  57. cout << "? + ? = ?";
  58. else
  59. cout << "? + " << sumB << " = ?";
  60. }
  61. else
  62. {
  63. if (!flagB)
  64. cout << sumA << " + " << sumB << " = " << sumA + sumB;
  65. else
  66. cout << sumA << " + ? = ?";
  67. }
  68. return 0;
  69. }

 

L1-026 I Love GPLT (5 分)

这道超级简单的题目没有任何输入。

你只需要把这句很重要的话 —— “I Love GPLT”——竖着输出就可以了。

所谓“竖着输出”,是指每个字符占一行(包括空格),即每行只能有1个字符和回车。

输入样例:

输出样例:

  1. I
  2. L
  3. o
  4. v
  5. e
  6. G
  7. P
  8. L
  9. T

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 10005
  7. int main(int argc, char const *argv[])
  8. {
  9. cout << "I" << endl;
  10. cout << " " << endl;
  11. cout << "L" << endl;
  12. cout << "o" << endl;
  13. cout << "v" << endl;
  14. cout << "e" << endl;
  15. cout << " " << endl;
  16. cout << "G" << endl;
  17. cout << "P" << endl;
  18. cout << "L" << endl;
  19. cout << "T" << endl;
  20. }

 

L1-027 出租 (20 分)

下面是新浪微博上曾经很火的一张图:

一时间网上一片求救声,急问这个怎么破。其实这段代码很简单,index数组就是arr数组的下标,index[0]=2 对应 arr[2]=1index[1]=0 对应 arr[0]=8index[2]=3 对应 arr[3]=0,以此类推…… 很容易得到电话号码是18013820100

本题要求你编写一个程序,为任何一个电话号码生成这段代码 —— 事实上,只要生成最前面两行就可以了,后面内容是不变的。

输入格式:

输入在一行中给出一个由11位数字组成的手机号码。

输出格式:

为输入的号码生成代码的前两行,其中arr中的数字必须按递减顺序给出。

输入样例:

18013820100

输出样例:

  1. int[] arr = new int[]{8,3,2,1,0};
  2. int[] index = new int[]{3,0,4,3,1,0,2,4,3,4,4};
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. using namespace std;
  6. #define MAX 15
  7. int main(int argc, char const *argv[])
  8. {
  9. string pho;
  10. getline(cin, pho);
  11. int arr[MAX];
  12. int tem[MAX];
  13. memset(arr, 0, sizeof(arr));
  14. for(int i = 0; i < pho.length(); ++i){
  15. arr[pho[i] - '0'] = 1;
  16. }
  17. int num = 0;
  18. for(int i = MAX - 1; i >= 0; --i){
  19. if(arr[i] != 0){
  20. tem[num] = i;
  21. num++;
  22. }
  23. }
  24. cout<< "int[] arr = new int[]{" << tem[0];
  25. for(int i = 1; i < num; ++i){
  26. cout << "," << tem[i];
  27. }
  28. cout << "};" << endl;
  29. cout << "int[] index = new int[]{";
  30. for(int i = 0; i < pho.length(); ++i){
  31. for(int j = 0; j < num; ++j){
  32. if(((pho[i]-'0') == tem[j]) && (i != pho.length() - 1))
  33. cout << j << ",";
  34. else if(((pho[i]-'0') == tem[j]) && (i == pho.length() - 1))
  35. cout << j ;
  36. }
  37. }
  38. cout << "};" << endl;
  39. }

 

 

L1-028 判断素数 (10 分)

本题的目标很简单,就是判断一个给定的正整数是否素数。

输入格式:

输入在第一行给出一个正整数N(≤ 10),随后N行,每行给出一个小于2​31​​的需要判断的正整数。

输出格式:

对每个需要判断的正整数,如果它是素数,则在一行中输出Yes,否则输出No

输入样例:

  1. 2
  2. 11
  3. 111

输出样例:

  1. Yes
  2. No
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 15
  9. int prime(int a){
  10. if(a == 1)
  11. return 1;
  12. for(int i = 1; i < sqrt(a); ++i){
  13. if(a % i == 0 && i != 1){
  14. return 1;
  15. }
  16. }
  17. return 0;
  18. }
  19. int main(int argc, char const *argv[])
  20. {
  21. int T;
  22. unsigned long long a[MAX];
  23. cin >> T;
  24. memset(a, 0, sizeof(a));
  25. for(int i = 0; i < T; ++i){
  26. cin >> a[i];
  27. }
  28. for(int i = 0; i < T; ++i){
  29. int ans = prime(a[i]);
  30. if(ans == 0){
  31. cout << "Yes" << endl;
  32. }
  33. else if(ans == 1){
  34. cout << "No" << endl;
  35. }
  36. }
  37. }

L1-029 是不是太胖了 (5 分)

据说一个人的标准体重应该是其身高(单位:厘米)减去100、再乘以0.9所得到的公斤数。已知市斤是公斤的两倍。现给定某人身高,请你计算其标准体重应该是多少?(顺便也悄悄给自己算一下吧……)

输入格式:

输入第一行给出一个正整数H(100 < H ≤ 300),为某人身高。

输出格式:

在一行中输出对应的标准体重,单位为市斤,保留小数点后1位。

输入样例:

169

输出样例:

124.2
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 15
  9. int main(int argc, char const *argv[])
  10. {
  11. int high;
  12. cin >> high;
  13. double standard = ((high - 100) * 0.9) * 2;
  14. printf("%.1lf\n", standard);
  15. }

 

L1-030 一帮一 (15 分)

“一帮一学习小组”是中小学中常见的学习组织方式,老师把学习成绩靠前的学生跟学习成绩靠后的学生排在一组。本题就请你编写程序帮助老师自动完成这个分配工作,即在得到全班学生的排名后,在当前尚未分组的学生中,将名次最靠前的学生与名次最靠后的异性学生分为一组。

输入格式:

输入第一行给出正偶数N(≤50),即全班学生的人数。此后N行,按照名次从高到低的顺序给出每个学生的性别(0代表女生,1代表男生)和姓名(不超过8个英文字母的非空字符串),其间以1个空格分隔。这里保证本班男女比例是1:1,并且没有并列名次。

输出格式:

每行输出一组两个学生的姓名,其间以1个空格分隔。名次高的学生在前,名次低的学生在后。小组的输出顺序按照前面学生的名次从高到低排列。

输入样例:

  1. 8
  2. 0 Amy
  3. 1 Tom
  4. 1 Bill
  5. 0 Cindy
  6. 0 Maya
  7. 1 John
  8. 1 Jack
  9. 0 Linda

输出样例:

  1. Amy Jack
  2. Tom Linda
  3. Bill Maya
  4. Cindy John

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 55
  9. int main(int argc, char const *argv[])
  10. {
  11. int T;
  12. int sex[MAX];
  13. char name[MAX][10];
  14. cin >> T;
  15. memset(sex, 0, sizeof(sex));
  16. memset(name, 0, sizeof(name));
  17. for(int i = 0; i < T; ++i){
  18. scanf("%d %s", &sex[i], &name[i]);
  19. }
  20. int flag[MAX];
  21. memset(flag, 0, sizeof(flag));
  22. for(int i = 0; i < T; ++i){
  23. for(int j = T-1; j >= 0; --j){
  24. if(sex[i] == 0 && sex[j] == 1 && flag[i] != 1 && flag[j] != 1 || sex[i] == 1 && sex[j] == 0 && flag[i] != 1 && flag[j] != 1){
  25. cout << name[i] << " " << name[j] << endl;
  26. flag[i] = 1;
  27. flag[j] = 1;
  28. }
  29. }
  30. }
  31. }

L1-031 到底是不是太胖了 (10 分)

据说一个人的标准体重应该是其身高(单位:厘米)减去100、再乘以0.9所得到的公斤数。真实体重与标准体重误差在10%以内都是完美身材(即 | 真实体重 − 标准体重 | < 标准体重×10%)。已知市斤是公斤的两倍。现给定一群人的身高和实际体重,请你告诉他们是否太胖或太瘦了。

输入格式:

输入第一行给出一个正整数N(≤ 20)。随后N行,每行给出两个整数,分别是一个人的身高H(120 < H < 200;单位:厘米)和真实体重W(50 < W ≤ 300;单位:市斤),其间以空格分隔。

输出格式:

为每个人输出一行结论:如果是完美身材,输出You are wan mei!;如果太胖了,输出You are tai pang le!;否则输出You are tai shou le!

输入样例:

  1. 3
  2. 169 136
  3. 150 81
  4. 178 155

输出样例:

  1. You are wan mei!
  2. You are tai shou le!
  3. You are tai pang le!
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 55
  9. int main(int argc, char const *argv[])
  10. {
  11. int T;
  12. cin >> T;
  13. int high[MAX];
  14. int weigh[MAX];
  15. for(int i = 0; i < T; ++i){
  16. cin >> high[i] >> weigh[i];
  17. }
  18. double standard;
  19. double ans = 0;
  20. for(int i = 0; i < T; ++i){
  21. standard = (double)(((high[i] - 100) * 0.9) * 2);
  22. if(standard < weigh[i]){
  23. double tem_w = (double)weigh[i] - standard;
  24. double tem_s = (double)standard * 0.1;
  25. if(tem_w < tem_s)
  26. cout << "You are wan mei!" << endl;
  27. else
  28. cout << "You are tai pang le!" <<endl;
  29. }
  30. else if(standard > weigh[i]){
  31. double tem_w = (double)standard - weigh[i];
  32. double tem_s = (double)standard * 0.1;
  33. if(tem_w < tem_s)
  34. cout << "You are wan mei!" << endl;
  35. else
  36. cout << "You are tai shou le!" << endl;
  37. }else{
  38. cout << "You are wan mei!" << endl;
  39. }
  40. }
  41. }

L1-032 Left-pad (20 分)

根据新浪微博上的消息,有一位开发者不满NPM(Node Package Manager)的做法,收回了自己的开源代码,其中包括一个叫left-pad的模块,就是这个模块把javascript里面的React/Babel干瘫痪了。这是个什么样的模块?就是在字符串前填充一些东西到一定的长度。例如用*去填充字符串GPLT,使之长度为10,调用left-pad的结果就应该是******GPLT。Node社区曾经对left-pad紧急发布了一个替代,被严重吐槽。下面就请你来实现一下这个模块。

输入格式:

输入在第一行给出一个正整数N(≤10​4​​)和一个字符,分别是填充结果字符串的长度和用于填充的字符,中间以1个空格分开。第二行给出原始的非空字符串,以回车结束。

输出格式:

在一行中输出结果字符串。

输入样例1:

  1. 15 _
  2. I love GPLT

输出样例1:

____I love GPLT

输入样例2:

  1. 4 *
  2. this is a sample for cut

输出样例2:

 cut

 

  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<memory.h>
  4. #include<string>
  5. #include<iostream>
  6. using namespace std;
  7. int main(int argc, char const *argv[])
  8. {
  9. int T;
  10. char ch;
  11. string sen;
  12. scanf("%d %c", &T, &ch);
  13. getchar();
  14. getline(cin, sen);
  15. int len = sen.length();
  16. if(len >= T){
  17. for(int i = len - T; i < len; ++i)
  18. cout << sen[i];
  19. cout << endl;
  20. }
  21. else if(len < T){
  22. for(int i = 0; i < T - sen.length(); ++i)
  23. cout << ch;
  24. for(int i = 0; i < sen.length(); ++i)
  25. cout << sen[i];
  26. cout << endl;
  27. }
  28. return 0;
  29. }

L1-033 出生年 (15 分)

以上是新浪微博中一奇葩贴:“我出生于1988年,直到25岁才遇到4个数字都不相同的年份。”也就是说,直到2013年才达到“4个数字都不相同”的要求。本题请你根据要求,自动填充“我出生于y年,直到x岁才遇到n个数字都不相同的年份”这句话。

输入格式:

输入在一行中给出出生年份y和目标年份中不同数字的个数n,其中y在[1, 3000]之间,n可以是2、或3、或4。注意不足4位的年份要在前面补零,例如公元1年被认为是0001年,有2个不同的数字0和1。

输出格式:

根据输入,输出x和能达到要求的年份。数字间以1个空格分隔,行首尾不得有多余空格。年份要按4位输出。注意:所谓“n个数字都不相同”是指不同的数字正好是n个。如“2013”被视为满足“4位数字都不同”的条件,但不被视为满足2位或3位数字不同的条件。

输入样例1:

1988 4

输出样例1:

25 2013

输入样例2:

1 2

输出样例2:

0 0001
  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<memory.h>
  4. #include<string>
  5. #include<iostream>
  6. #include<set>
  7. using namespace std;
  8. int find(int year){
  9. set<int> s;
  10. int a, b, c, d;
  11. a = year % 10;
  12. b = year / 10 % 10;
  13. c = year / 100 % 10;
  14. d = year / 1000;
  15. s.insert(a);
  16. s.insert(b);
  17. s.insert(c);
  18. s.insert(d);
  19. return s.size();
  20. }
  21. int main(int argc, char const *argv[])
  22. {
  23. int year, n;
  24. cin >> year >> n;
  25. int count = 0;
  26. while(find(year) != n){
  27. year++;
  28. count++;
  29. }
  30. printf("%d %04d\n", count, year);
  31. }

 

L1-034 点赞 (20 分)

微博上有个“点赞”功能,你可以为你喜欢的博文点个赞表示支持。每篇博文都有一些刻画其特性的标签,而你点赞的博文的类型,也间接刻画了你的特性。本题就要求你写个程序,通过统计一个人点赞的纪录,分析这个人的特性。

输入格式:

输入在第一行给出一个正整数N(≤1000),是该用户点赞的博文数量。随后N行,每行给出一篇被其点赞的博文的特性描述,格式为“K F​1​​⋯F​K​​”,其中1≤K≤10,F​i​​(i=1,⋯,K)是特性标签的编号,我们将所有特性标签从1到1000编号。数字间以空格分隔。

输出格式:

统计所有被点赞的博文中最常出现的那个特性标签,在一行中输出它的编号和出现次数,数字间隔1个空格。如果有并列,则输出编号最大的那个。

输入样例:

  1. 4
  2. 3 889 233 2
  3. 5 100 3 233 2 73
  4. 4 3 73 889 2
  5. 2 233 123

输出样例:

233 3
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. int T;
  12. int bolg[MAX];
  13. memset(bolg, 0, sizeof(bolg));
  14. cin >> T;
  15. while(T--){
  16. int n;
  17. cin >> n;
  18. int tem;
  19. for(int i = 1; i <= n; ++i){
  20. cin >> tem;
  21. bolg[tem]++;
  22. }
  23. }
  24. int ans = 0;
  25. int max = 0;
  26. for(int i = 1; i <= 1000; ++i)
  27. {
  28. if(max <= bolg[i]){
  29. ans = i;
  30. max = bolg[i];
  31. }
  32. }
  33. cout << ans << " " << bolg[ans] << endl;
  34. }

L1-035 情人节 (15 分)

以上是朋友圈中一奇葩贴:“2月14情人节了,我决定造福大家。第2个赞和第14个赞的,我介绍你俩认识…………咱三吃饭…你俩请…”。现给出此贴下点赞的朋友名单,请你找出那两位要请客的倒霉蛋。

输入格式:

输入按照点赞的先后顺序给出不知道多少个点赞的人名,每个人名占一行,为不超过10个英文字母的非空单词,以回车结束。一个英文句点.标志输入的结束,这个符号不算在点赞名单里。

输出格式:

根据点赞情况在一行中输出结论:若存在第2个人A和第14个人B,则输出“A and B are inviting you to dinner...”;若只有A没有B,则输出“A is the only one for you...”;若连A都没有,则输出“Momo... No one is for you ...”。

输入样例1:

  1. GaoXZh
  2. Magi
  3. Einst
  4. Quark
  5. LaoLao
  6. FatMouse
  7. ZhaShen
  8. fantacy
  9. latesum
  10. SenSen
  11. QuanQuan
  12. whatever
  13. whenever
  14. Potaty
  15. hahaha
  16. .

输出样例1:

Magi and Potaty are inviting you to dinner...

输入样例2:

  1. LaoLao
  2. FatMouse
  3. whoever
  4. .

输出样例2:

FatMouse is the only one for you...

输入样例3:

  1. LaoLao
  2. .

输出样例3:

Momo... No one is for you ...
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. char list[MAX][15];
  12. int i = 0;
  13. while(1){
  14. cin >> list[i];
  15. if(list[i][0] == '.')
  16. break;
  17. i++;
  18. }
  19. i--;
  20. if(i < 1)
  21. cout << "Momo... No one is for you ..." << endl;
  22. else if(i < 13)
  23. cout << list[1] << " is the only one for you..." << endl;
  24. else
  25. cout << list[1] << " and " << list[13] << " are inviting you to dinner..." << endl;
  26. }

L1-036 A乘以B (5 分)

看我没骗你吧 —— 这是一道你可以在 10 秒内完成的题:给定两个绝对值不超过 100 的整数 A 和 B,输出 A 乘以 B 的值。

输入格式:

输入在第一行给出两个整数 A 和 B(−100≤A,B≤100),数字间以空格分隔。

输出格式:

在一行中输出 A 乘以 B 的值。

输入样例:

-8 13

输出样例:

-104
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. int a, b;
  12. cin >> a >> b;
  13. cout << a * b << endl;
  14. }

 

L1-037 A除以B (10 分)

真的是简单题哈 —— 给定两个绝对值不超过100的整数A和B,要求你按照“A/B=商”的格式输出结果。

输入格式:

输入在第一行给出两个整数A和B(−100≤A,B≤100),数字间以空格分隔。

输出格式:

在一行中输出结果:如果分母是正数,则输出“A/B=商”;如果分母是负数,则要用括号把分母括起来输出;如果分母为零,则输出的商应为Error。输出的商应保留小数点后2位。

输入样例1:

-1 2

输出样例1:

-1/2=-0.50

输入样例2:

1 -3

输出样例2:

1/(-3)=-0.33

输入样例3:

5 0

输出样例3:

5/0=Error
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. double a, b;
  12. double sum;
  13. cin >> a >> b;
  14. sum = (double)(a / b);
  15. if(b > 0)
  16. printf("%.0lf/%.0lf=%.2lf\n", a, b, sum);
  17. else if (b < 0)
  18. printf("%.0lf/(-%.0lf)=%.2lf\n", a, -b, sum);
  19. else
  20. printf("%.0lf/%.0lf=Error", a, b);
  21. }

L1-038 新世界 (5 分)

这道超级简单的题目没有任何输入。

你只需要在第一行中输出程序员钦定名言“Hello World”,并且在第二行中输出更新版的“Hello New World”就可以了。

输入样例:

输出样例:

  1. Hello World
  2. Hello New World
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. cout << "Hello World" << endl;
  12. cout << "Hello New World" <<endl;
  13. }

 

L1-039 古风排版 (20 分)

中国的古人写文字,是从右向左竖向排版的。本题就请你编写程序,把一段文字按古风排版。

输入格式:

输入在第一行给出一个正整数N(<100),是每一列的字符数。第二行给出一个长度不超过1000的非空字符串,以回车结束。

输出格式:

按古风格式排版给定的字符串,每列N个字符(除了最后一列可能不足N个)。

输入样例:

  1. 4
  2. This is a test case

输出样例:

  1. asa T
  2. st ih
  3. e tsi
  4. ce s
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. int T;
  12. cin >> T;
  13. string ch;
  14. getchar();
  15. getline(cin, ch);
  16. char mp[MAX][MAX];
  17. memset(mp, 0, sizeof(mp));
  18. int num = ch.length();
  19. int row = num / T;
  20. if(num % T != 0)
  21. row ++;
  22. int k = 0;
  23. for(int i = 0; i < T; ++i){
  24. for(int j = 1; j <= row; ++j){
  25. mp[i][j] = ' ';
  26. }
  27. }
  28. for(int i = row ; i >= 0; --i){
  29. for(int j = 0; j < T; ++j){
  30. if(k == num)
  31. break;
  32. mp[j][i] = ch[k];
  33. k++;
  34. }
  35. }
  36. for(int i = 0; i < T; ++i){
  37. for(int j = 1; j <= row; ++j){
  38. cout << mp[i][j];
  39. }
  40. cout << endl;
  41. }
  42. }

L1-040 最佳情侣身高差 (10 分)

专家通过多组情侣研究数据发现,最佳的情侣身高差遵循着一个公式:(女方的身高)×1.09 =(男方的身高)。如果符合,你俩的身高差不管是牵手、拥抱、接吻,都是最和谐的差度。

下面就请你写个程序,为任意一位用户计算他/她的情侣的最佳身高。

输入格式:

输入第一行给出正整数N(≤10),为前来查询的用户数。随后N行,每行按照“性别 身高”的格式给出前来查询的用户的性别和身高,其中“性别”为“F”表示女性、“M”表示男性;“身高”为区间 [1.0, 3.0] 之间的实数。

输出格式:

对每一个查询,在一行中为该用户计算出其情侣的最佳身高,保留小数点后2位。

输入样例:

  1. 2
  2. M 1.75
  3. F 1.8

输出样例:

  1. 1.61
  2. 1.96
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. int n;
  12. cin >> n;
  13. while(n--){
  14. char ch;
  15. double high;
  16. cin >> ch >> high;
  17. if(ch == 'F')
  18. printf("%.2lf\n", high * 1.09);
  19. else
  20. printf("%.2lf\n",high / 1.09);
  21. }
  22. }

L1-041 寻找250 (10 分)

对方不想和你说话,并向你扔了一串数…… 而你必须从这一串数字中找到“250”这个高大上的感人数字。

输入格式:

输入在一行中给出不知道多少个绝对值不超过1000的整数,其中保证至少存在一个“250”。

输出格式:

在一行中输出第一次出现的“250”是对方扔过来的第几个数字(计数从1开始)。题目保证输出的数字在整型范围内。

输入样例:

888 666 123 -233 250 13 250 -222

输出样例:

5
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. int n;
  12. int num = 0;
  13. while(cin >> n && n != 250){
  14. num++;
  15. }
  16. cout << num+1 << endl;
  17. }

L1-042 日期格式化 (5 分)

世界上不同国家有不同的写日期的习惯。比如美国人习惯写成“月-日-年”,而中国人习惯写成“年-月-日”。下面请你写个程序,自动把读入的美国格式的日期改写成中国习惯的日期。

输入格式:

输入在一行中按照“mm-dd-yyyy”的格式给出月、日、年。题目保证给出的日期是1900年元旦至今合法的日期。

输出格式:

在一行中按照“yyyy-mm-dd”的格式给出年、月、日。

输入样例:

03-15-2017

输出样例:

2017-03-15
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. int year, month, day;
  12. scanf("%d-%d-%d", &month, &day, &year);
  13. if(day < 10 && month < 10)
  14. printf("%d-0%d-0%d\n", year, month, day);
  15. else if(day >= 10 && month < 10)
  16. printf("%d-0%d-%d\n", year, month, day);
  17. else if(day < 10 && month >= 10)
  18. printf("%d-%d-0%d\n", year, month, day);
  19. else if(day >= 10 && month >= 10)
  20. printf("%d-%d-%d\n", year, month, day);
  21. }

 

L1-043 阅览室 (20 分)

天梯图书阅览室请你编写一个简单的图书借阅统计程序。当读者借书时,管理员输入书号并按下S键,程序开始计时;当读者还书时,管理员输入书号并按下E键,程序结束计时。书号为不超过1000的正整数。当管理员将0作为书号输入时,表示一天工作结束,你的程序应输出当天的读者借书次数和平均阅读时间。

注意:由于线路偶尔会有故障,可能出现不完整的纪录,即只有S没有E,或者只有E没有S的纪录,系统应能自动忽略这种无效纪录。另外,题目保证书号是书的唯一标识,同一本书在任何时间区间内只可能被一位读者借阅。

输入格式:

输入在第一行给出一个正整数N(≤10),随后给出N天的纪录。每天的纪录由若干次借阅操作组成,每次操作占一行,格式为:

书号([1, 1000]内的整数) 键值SE) 发生时间hh:mm,其中hh是[0,23]内的整数,mm是[0, 59]内整数)

每一天的纪录保证按时间递增的顺序给出。

输出格式:

对每天的纪录,在一行中输出当天的读者借书次数和平均阅读时间(以分钟为单位的精确到个位的整数时间)。

输入样例:

  1. 3
  2. 1 S 08:10
  3. 2 S 08:35
  4. 1 E 10:00
  5. 2 E 13:16
  6. 0 S 17:00
  7. 0 S 17:00
  8. 3 E 08:10
  9. 1 S 08:20
  10. 2 S 09:00
  11. 1 E 09:20
  12. 0 E 17:00

输出样例:

  1. 2 196
  2. 0 0
  3. 1 60
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <string.h>
  4. using namespace std;
  5. int main(){
  6. int n;
  7. cin >> n;
  8. for (int i = 0; i < n; i++) {
  9. int id = -1;
  10. double time = 0;
  11. int num = 0;
  12. int mintue[2001] = {0};
  13. bool flag[2001];
  14. memset(flag, false, sizeof(flag));
  15. while (id != 0) {
  16. char a;
  17. int h, m;
  18. scanf("%d %c %d:%d", &id, &a, &h, &m);
  19. if (id == 0) {
  20. break;
  21. } else if (a == 'S') {
  22. mintue[id] = h * 60 + m;
  23. flag[id] = true;
  24. } else if (a == 'E') {
  25. if (flag[id]) {
  26. flag[id] = false;
  27. time += h * 60 + m - mintue[id];
  28. mintue[id] = 0;
  29. num++;
  30. }
  31. }
  32. }
  33. int t;
  34. if (num != 0) {
  35. time /= num;
  36. }
  37. t = time + 0.5f;
  38. printf("%d %d\n", num, t);
  39. }
  40. }

L1-044 稳赢 (15 分)

大家应该都会玩“锤子剪刀布”的游戏:两人同时给出手势,胜负规则如图所示:

现要求你编写一个稳赢不输的程序,根据对方的出招,给出对应的赢招。但是!为了不让对方输得太惨,你需要每隔K次就让一个平局。

输入格式:

输入首先在第一行给出正整数K(≤10),即平局间隔的次数。随后每行给出对方的一次出招:ChuiZi代表“锤子”、JianDao代表“剪刀”、Bu代表“布”。End代表输入结束,这一行不要作为出招处理。

输出格式:

对每一个输入的出招,按要求输出稳赢或平局的招式。每招占一行。

输入样例:

  1. 2
  2. ChuiZi
  3. JianDao
  4. Bu
  5. JianDao
  6. Bu
  7. ChuiZi
  8. ChuiZi
  9. End

输出样例:

  1. Bu
  2. ChuiZi
  3. Bu
  4. ChuiZi
  5. JianDao
  6. ChuiZi
  7. Bu
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 10005
  9. int main(int argc, char const *argv[])
  10. {
  11. int T;
  12. cin >> T;
  13. char game[MAX][10];
  14. int i = 0;
  15. while(1){
  16. cin >> game[i];
  17. if(game[i][0] == 'E')
  18. break;
  19. i++;
  20. }
  21. int num = 0;
  22. for(int j = 0; j < i; ++j){
  23. if(game[j][0] == 'C' && num != T){
  24. cout << "Bu" << endl;
  25. num++;
  26. }
  27. else if(game[j][0] == 'B' && num != T){
  28. cout << "JianDao" << endl;
  29. num++;
  30. }
  31. else if(game[j][0] == 'J' && num != T){
  32. cout << "ChuiZi" << endl;
  33. num++;
  34. }
  35. else if(num == T){
  36. cout << game[j] << endl;
  37. num = 0;
  38. }
  39. }
  40. }

 

L1-045 宇宙无敌大招呼 (5 分)

据说所有程序员学习的第一个程序都是在屏幕上输出一句“Hello World”,跟这个世界打个招呼。作为天梯赛中的程序员,你写的程序得高级一点,要能跟任意指定的星球打招呼。

输入格式:

输入在第一行给出一个星球的名字S,是一个由不超过7个英文字母组成的单词,以回车结束。

输出格式:

在一行中输出Hello S,跟输入的S星球打个招呼。

输入样例:

Mars

输出样例:

Hello Mars
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. string plant;
  12. getline(cin, plant);
  13. cout << "Hello ";
  14. for(int i = 0; i < plant.length(); ++i){
  15. cout << plant[i];
  16. }
  17. cout << endl;
  18. }

L1-046 整除光棍 (20 分)

这里所谓的“光棍”,并不是指单身汪啦~ 说的是全部由1组成的数字,比如1、11、111、1111等。传说任何一个光棍都能被一个不以5结尾的奇数整除。比如,111111就可以被13整除。 现在,你的程序要读入一个整数x,这个整数一定是奇数并且不以5结尾。然后,经过计算,输出两个数字:第一个数字s,表示x乘以s是一个光棍,第二个数字n是这个光棍的位数。这样的解当然不是唯一的,题目要求你输出最小的解。

提示:一个显然的办法是逐渐增加光棍的位数,直到可以整除x为止。但难点在于,s可能是个非常大的数 —— 比如,程序输入31,那么就输出3584229390681和15,因为31乘以3584229390681的结果是111111111111111,一共15个1。

输入格式:

输入在一行中给出一个不以5结尾的正奇数x(<1000)。

输出格式:

在一行中输出相应的最小的sn,其间以1个空格分隔。

输入样例:

31

输出样例:

3584229390681 15
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <string.h>
  4. using namespace std;
  5. int main(){
  6. int i,j,k,n,m;
  7. long long f1,f2,f3;
  8. cin >> f1;
  9. n=0;
  10. for(f2=1;f2<f1;f2=f2*10+1)
  11. n++;
  12. while(1){
  13. n++;
  14. if(f2%f1==0){
  15. cout << f2/f1;
  16. break;
  17. }else{
  18. cout << f2/f1;
  19. f2%=f1;
  20. f2=f2*10+1;
  21. }
  22. }
  23. cout << " " << n<<endl;
  24. return 0;
  25. }

L1-047 装睡 (10 分)

你永远叫不醒一个装睡的人 —— 但是通过分析一个人的呼吸频率和脉搏,你可以发现谁在装睡!医生告诉我们,正常人睡眠时的呼吸频率是每分钟15-20次,脉搏是每分钟50-70次。下面给定一系列人的呼吸频率与脉搏,请你找出他们中间有可能在装睡的人,即至少一项指标不在正常范围内的人。

输入格式:

输入在第一行给出一个正整数N(≤10)。随后N行,每行给出一个人的名字(仅由英文字母组成的、长度不超过3个字符的串)、其呼吸频率和脉搏(均为不超过100的正整数)。

输出格式:

按照输入顺序检查每个人,如果其至少一项指标不在正常范围内,则输出其名字,每个名字占一行。

输入样例:

  1. 4
  2. Amy 15 70
  3. Tom 14 60
  4. Joe 18 50
  5. Zoe 21 71

输出样例:

  1. Tom
  2. Zoe

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 1005
  9. int main(int argc, char const *argv[])
  10. {
  11. int T;
  12. cin >> T;
  13. char name[MAX][5];
  14. int breath[MAX];
  15. int pulse[MAX];
  16. for(int i = 0; i < T; ++i){
  17. scanf("%s %d %d", &name[i], &breath[i], &pulse[i]);
  18. }
  19. for(int i = 0; i < T; ++i){
  20. if(breath[i] < 15 || breath[i] > 20 || pulse[i] < 50 || pulse[i] > 70)
  21. cout << name[i] << endl;
  22. }
  23. }

L1-048 矩阵A乘以B (15 分)

给定两个矩阵A和B,要求你计算它们的乘积矩阵AB。需要注意的是,只有规模匹配的矩阵才可以相乘。即若A有R​a​​行、C​a​​列,B有R​b​​行、C​b​​列,则只有C​a​​与R​b​​相等时,两个矩阵才能相乘。

输入格式:

输入先后给出两个矩阵A和B。对于每个矩阵,首先在一行中给出其行数R和列数C,随后R行,每行给出C个整数,以1个空格分隔,且行首尾没有多余的空格。输入保证两个矩阵的R和C都是正数,并且所有整数的绝对值不超过100。

输出格式:

若输入的两个矩阵的规模是匹配的,则按照输入的格式输出乘积矩阵AB,否则输出Error: Ca != Rb,其中Ca是A的列数,Rb是B的行数。

输入样例1:

  1. 2 3
  2. 1 2 3
  3. 4 5 6
  4. 3 4
  5. 7 8 9 0
  6. -1 -2 -3 -4
  7. 5 6 7 8

输出样例1:

  1. 2 4
  2. 20 22 24 16
  3. 53 58 63 28

输入样例2:

  1. 3 2
  2. 38 26
  3. 43 -5
  4. 0 17
  5. 3 2
  6. -11 57
  7. 99 68
  8. 81 72

输出样例2:

Error: 2 != 3

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 105
  9. int main(int argc, char const *argv[])
  10. {
  11. int A[MAX][MAX];
  12. int B[MAX][MAX];
  13. int ans[MAX][MAX];
  14. memset(A, 0, sizeof(A));
  15. memset(B, 0, sizeof(B));
  16. memset(ans, 0, sizeof(ans));
  17. int a_line, a_row, b_line, b_row;
  18. cin >> a_line >> a_row;
  19. for(int i = 1; i <= a_line; ++i){
  20. for(int j = 1; j <= a_row; ++j){
  21. cin >> A[i][j];
  22. }
  23. }
  24. cin >> b_line >> b_row;
  25. for(int i = 1; i <= b_line; ++i){
  26. for(int j = 1; j <= b_row; ++j){
  27. cin >> B[i][j];
  28. }
  29. }
  30. if(a_row != b_line){
  31. printf("Error: %d != %d\n", a_row, b_line);
  32. }
  33. else{
  34. for(int i = 1; i <= a_line; ++i){
  35. for(int j = 1; j <= b_row; ++j){
  36. for(int k = 1; k <= a_row; ++k){
  37. ans[i][j] += A[i][k] * B[k][j];
  38. }
  39. }
  40. }
  41. cout << a_line << " " << b_row << endl;
  42. for(int i = 1; i <= a_line; ++i){
  43. for(int j = 1; j <= b_row; ++j){
  44. if(j != b_row)
  45. cout << ans[i][j] << " ";
  46. else
  47. cout << ans[i][j];
  48. }
  49. cout << endl;
  50. }
  51. }
  52. }

L1-049 天梯赛座位分配 (20 分)

天梯赛每年有大量参赛队员,要保证同一所学校的所有队员都不能相邻,分配座位就成为一件比较麻烦的事情。为此我们制定如下策略:假设某赛场有 N 所学校参赛,第 i 所学校有 M[i] 支队伍,每队 10 位参赛选手。令每校选手排成一列纵队,第 i+1 队的选手排在第 i 队选手之后。从第 1 所学校开始,各校的第 1 位队员顺次入座,然后是各校的第 2 位队员…… 以此类推。如果最后只剩下 1 所学校的队伍还没有分配座位,则需要安排他们的队员隔位就坐。本题就要求你编写程序,自动为各校生成队员的座位号,从 1 开始编号。

输入格式:

输入在一行中给出参赛的高校数 N (不超过100的正整数);第二行给出 N 个不超过10的正整数,其中第 i 个数对应第 i 所高校的参赛队伍数,数字间以空格分隔。

输出格式:

从第 1 所高校的第 1 支队伍开始,顺次输出队员的座位号。每队占一行,座位号间以 1 个空格分隔,行首尾不得有多余空格。另外,每所高校的第一行按“#X”输出该校的编号X,从 1 开始。

输入样例:

  1. 3
  2. 3 4 2

输出样例:

  1. #1
  2. 1 4 7 10 13 16 19 22 25 28
  3. 31 34 37 40 43 46 49 52 55 58
  4. 61 63 65 67 69 71 73 75 77 79
  5. #2
  6. 2 5 8 11 14 17 20 23 26 29
  7. 32 35 38 41 44 47 50 53 56 59
  8. 62 64 66 68 70 72 74 76 78 80
  9. 82 84 86 88 90 92 94 96 98 100
  10. #3
  11. 3 6 9 12 15 18 21 24 27 30
  12. 33 36 39 42 45 48 51 54 57 60
  1. #include<stdio.h>
  2. #include<iostream>
  3. #include<string.h>
  4. #include<algorithm>
  5. #include<math.h>
  6. #include<vector>
  7. using namespace std;
  8. int m[105];
  9. int f[105];///用于判断每队是否都已编号完毕
  10. int main()
  11. {
  12. int n, len = 0,sum = 0,len1 = 0;
  13. vector<int>A[105];
  14. cin>>n;
  15. for(int i = 0;i < n; i++)
  16. {
  17. cin >> m[i];
  18. m[i] = m[i]*10;///每队的人数
  19. sum += m[i];
  20. }
  21. memset(f,0,sizeof(f));
  22. for(int i = 1;;)
  23. {
  24. int t = 0;
  25. while(t < n)
  26. {
  27. if(A[t].size() < m[t])
  28. {
  29. len1++;
  30. A[t].push_back(i);
  31. if(len + 1 ==n)///如果只剩下一个队,编号要依次加2
  32. i += 2;
  33. else
  34. i += 1;
  35. }
  36. if(f[t] == 0 && A[t].size() >= m[t])
  37. {
  38. f[t] = 1;
  39. len++;
  40. }
  41. t++;
  42. }
  43. if(len1 == sum)
  44. break;
  45. }
  46. for(int i = 0;i < n; i++)
  47. {
  48. printf("#%d\n",i + 1);
  49. for(int j = 0; j < A[i].size(); j++)
  50. {
  51. if(j % 10 != 0)
  52. cout << " ";
  53. cout << A[i][j];
  54. if(j % 10 == 9)
  55. cout << endl;
  56. }
  57. if(A[i].size() % 10 != 0)
  58. cout << endl;
  59. }
  60. return 0;
  61. }

L1-050 倒数第N个字符串 (15 分)

给定一个完全由小写英文字母组成的字符串等差递增序列,该序列中的每个字符串的长度固定为 L,从 L 个 a 开始,以 1 为步长递增。例如当 L 为 3 时,序列为 { aaa, aab, aac, ..., aaz, aba, abb, ..., abz, ..., zzz }。这个序列的倒数第27个字符串就是 zyz。对于任意给定的 L,本题要求你给出对应序列倒数第 N 个字符串。

输入格式:

输入在一行中给出两个正整数 L(2 ≤ L ≤ 6)和 N(≤10​5​​)。

输出格式:

在一行中输出对应序列倒数第 N 个字符串。题目保证这个字符串是存在的。

输入样例:

3 7417

输出样例:

pat
  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<memory.h>
  4. #include<string>
  5. #include<iostream>
  6. #include<set>
  7. using namespace std;
  8. int main(){
  9. int L, N, c;
  10. char s[7];
  11. memset(s, 0, sizeof(s));
  12. cin >> L >> N;
  13. c = L - 1;
  14. s[L] = '\0';
  15. N--;
  16. while(N || c >= 0)
  17. {
  18. s[c --] = 'z' - N % 26;
  19. N /= 26;
  20. }
  21. cout << s;
  22. }

L1-051 打折 (5 分)

去商场淘打折商品时,计算打折以后的价钱是件颇费脑子的事情。例如原价 ¥988,标明打 7 折,则折扣价应该是 ¥988 x 70% = ¥691.60。本题就请你写个程序替客户计算折扣价。

输入格式:

输入在一行中给出商品的原价(不超过1万元的正整数)和折扣(为[1, 9]区间内的整数),其间以空格分隔。

输出格式:

在一行中输出商品的折扣价,保留小数点后 2 位。

输入样例:

988 7

输出样例:

691.60
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 100005
  9. int main(int argc, char const *argv[])
  10. {
  11. int price;
  12. double discount;
  13. cin >> price >> discount;
  14. printf("%.2lf\n", price * discount * 0.1);
  15. }

L1-052 2018我们要赢 (5 分)

2018年天梯赛的注册邀请码是“2018wmyy”,意思就是“2018我们要赢”。本题就请你用汉语拼音输出这句话。

输入格式:

本题没有输入。

输出格式:

在第一行中输出:“2018”;第二行中输出:“wo3 men2 yao4 ying2 !”。

输入样例:

输出样例:

  1. 2018
  2. wo3 men2 yao4 ying2 !
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 100005
  9. int main(int argc, char const *argv[])
  10. {
  11. cout << "2018" << endl;
  12. cout << "wo3 men2 yao4 ying2 !" << endl;
  13. }

L1-053 电子汪 (10 分)

据说汪星人的智商能达到人类 4 岁儿童的水平,更有些聪明汪会做加法计算。比如你在地上放两堆小球,分别有 1 只球和 2 只球,聪明汪就会用“汪!汪!汪!”表示 1 加 2 的结果是 3。

本题要求你为电子宠物汪做一个模拟程序,根据电子眼识别出的两堆小球的个数,计算出和,并且用汪星人的叫声给出答案。

输入格式:

输入在一行中给出两个 [1, 9] 区间内的正整数 A 和 B,用空格分隔。

输出格式:

在一行中输出 A + B 个Wang!

输入样例:

2 1

输出样例:

Wang!Wang!Wang!
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 100005
  9. int main(int argc, char const *argv[])
  10. {
  11. int a, b;
  12. cin >> a >> b;
  13. int ans = a + b;
  14. for(int i = 0; i < ans; ++i){
  15. printf("Wang!");
  16. }
  17. cout << endl;
  18. }

 

L1-054 福到了 (15 分)

“福”字倒着贴,寓意“福到”。不论到底算不算民俗,本题且请你编写程序,把各种汉字倒过来输出。这里要处理的每个汉字是由一个 N × N 的网格组成的,网格中的元素或者为字符 @ 或者为空格。而倒过来的汉字所用的字符由裁判指定。

输入格式:

输入在第一行中给出倒过来的汉字所用的字符、以及网格的规模 N (不超过100的正整数),其间以 1 个空格分隔;随后 N 行,每行给出 N 个字符,或者为 @ 或者为空格。

输出格式:

输出倒置的网格,如样例所示。但是,如果这个字正过来倒过去是一样的,就先输出bu yong dao le,然后再用输入指定的字符将其输出。

输入样例 1:

  1. $ 9
  2. @ @@@@@
  3. @@@ @@@
  4. @ @ @
  5. @@@ @@@
  6. @@@ @@@@@
  7. @@@ @ @ @
  8. @@@ @@@@@
  9. @ @ @ @
  10. @ @@@@@

输出样例 1:

  1. $$$$$ $
  2. $ $ $ $
  3. $$$$$ $$$
  4. $ $ $ $$$
  5. $$$$$ $$$
  6. $$$ $$$
  7. $ $ $
  8. $$$ $$$
  9. $$$$$ $

输入样例 2:

  1. & 3
  2. @@@
  3. @
  4. @@@

输出样例 2:

  1. bu yong dao le
  2. &&&
  3. &
  4. &&&

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 105
  9. int main(int argc, char const *argv[])
  10. {
  11. char ch;
  12. char mp[MAX][MAX], mp_t[MAX][MAX];
  13. memset(mp, 0, sizeof(mp));
  14. memset(mp_t, 0, sizeof(mp_t));
  15. int N;
  16. scanf("%c %d", &ch, &N);
  17. getchar();
  18. for(int i = 0; i < N; ++i){
  19. for(int j = 0; j < N; ++j){
  20. scanf("%c", &mp[i][j]);
  21. }
  22. getchar();
  23. }
  24. for(int i = N-1, k = 0; i >= 0; --i, ++k){
  25. for(int j = N-1, m = 0; j >= 0; --j, ++m){
  26. mp_t[k][m] = mp[i][j];
  27. }
  28. }
  29. int flag = 0;
  30. for(int i = 0; i < N; ++i){
  31. for(int j = 0; j < N; ++j){
  32. if(mp[i][j] != mp_t[i][j])
  33. {
  34. flag = 1;
  35. break;
  36. }
  37. }
  38. }
  39. if(flag == 1){
  40. for(int i = 0; i < N; ++i){
  41. for(int j = 0; j < N; ++j){
  42. if(mp_t[i][j] != ' ')
  43. mp_t[i][j] = ch;
  44. }
  45. }
  46. for(int i = 0; i < N; ++i){
  47. for(int j = 0; j < N; ++j){
  48. cout << mp_t[i][j];
  49. }
  50. cout << endl;
  51. }
  52. }
  53. else{
  54. cout << "bu yong dao le" << endl;
  55. for(int i = 0; i < N; ++i){
  56. for(int j = 0; j < N; ++j){
  57. if(mp_t[i][j] != ' ')
  58. mp_t[i][j] = ch;
  59. }
  60. }
  61. for(int i = 0; i < N; ++i){
  62. for(int j = 0; j < N ; ++j){
  63. cout << mp_t[i][j];
  64. }
  65. cout << endl;
  66. }
  67. }
  68. }

L1-055 谁是赢家 (10 分)

某电视台的娱乐节目有个表演评审环节,每次安排两位艺人表演,他们的胜负由观众投票和 3 名评委投票两部分共同决定。规则为:如果一位艺人的观众票数高,且得到至少 1 名评委的认可,该艺人就胜出;或艺人的观众票数低,但得到全部评委的认可,也可以胜出。节目保证投票的观众人数为奇数,所以不存在平票的情况。本题就请你用程序判断谁是赢家。

输入格式:

输入第一行给出 2 个不超过 1000 的正整数 Pa 和 Pb,分别是艺人 a 和艺人 b 得到的观众票数。题目保证这两个数字不相等。随后第二行给出 3 名评委的投票结果。数字 0 代表投票给 a,数字 1 代表投票给 b,其间以一个空格分隔。

输出格式:

按以下格式输出赢家:

The winner is x: P1 + P2

其中 x 是代表赢家的字母,P1 是赢家得到的观众票数,P2 是赢家得到的评委票数。

输入样例:

  1. 327 129
  2. 1 0 1

输出样例:

The winner is a: 327 + 1

 

  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 105
  9. int main(int argc, char const *argv[])
  10. {
  11. int pic_1, pic_2;
  12. cin >> pic_1 >> pic_2;
  13. int re[MAX];
  14. for(int i = 0; i < 3; ++i){
  15. cin >> re[i];
  16. }
  17. int a = 0, b = 0;
  18. for(int i = 0; i < 3; ++i){
  19. if(re[i] == 0)
  20. a++;
  21. else if(re[i] == 1)
  22. b++;
  23. }
  24. if(pic_1 > pic_2 && a != 0)
  25. cout << "The winner is a: " << pic_1 << " + " << a << endl;
  26. else if (pic_1 < pic_2 && a == 3)
  27. cout << "The winner is a: " << pic_1 << " + " << a << endl;
  28. else if(pic_1 < pic_2 && b != 0)
  29. cout << "The winner is b: " << pic_2 << " + " << b << endl;
  30. else if (pic_1 > pic_2 && b == 3)
  31. cout << "The winner is b: " << pic_2 << " + " << b << endl;
  32. }

L1-056 猜数字 (20 分)

一群人坐在一起,每人猜一个 100 以内的数,谁的数字最接近大家平均数的一半就赢。本题就要求你找出其中的赢家。

输入格式:

输入在第一行给出一个正整数N(≤10​4​​)。随后 N 行,每行给出一个玩家的名字(由不超过8个英文字母组成的字符串)和其猜的正整数(≤ 100)。

输出格式:

在一行中顺序输出:大家平均数的一半(只输出整数部分)、赢家的名字,其间以空格分隔。题目保证赢家是唯一的。

输入样例:

  1. 7
  2. Bob 35
  3. Amy 28
  4. James 98
  5. Alice 11
  6. Jack 45
  7. Smith 33
  8. Chris 62

输出样例:

22 Amy
  1. #include<stdio.h>
  2. #include<string>
  3. #include<memory.h>
  4. #include<iostream>
  5. #include<algorithm>
  6. #include<math.h>
  7. using namespace std;
  8. #define MAX 10005
  9. int abs(int a, int b){
  10. if(a - b < 0)
  11. return b - a;
  12. else
  13. return a - b;
  14. }
  15. int main(int argc, char const *argv[])
  16. {
  17. char name[MAX][10];
  18. int num[MAX];
  19. memset(name, 0, sizeof(name));
  20. memset(num, 0, sizeof(num));
  21. int T;
  22. cin >> T;
  23. for(int i = 0; i < T; ++i){
  24. scanf("%s %d", &name[i], &num[i]);
  25. }
  26. double sum = 0;
  27. for(int i = 0; i < T; ++i){
  28. sum += num[i];
  29. }
  30. int avg;
  31. avg = sum / T / 2;
  32. for(int i = 0; i < T; ++i){
  33. num[i] = abs(num[i],avg);
  34. }
  35. int max = 101;
  36. int flag = 0;
  37. for(int i = 0; i < T; ++i){
  38. if(num[i] < max)
  39. {
  40. max = num[i];
  41. flag = i;
  42. }
  43. }
  44. cout << avg << " " << name[flag];
  45. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/237798
推荐阅读
相关标签
  

闽ICP备14008679号