赞
踩
这道超级简单的题目没有任何输入。
你只需要在一行中输出著名短句“Hello World!”就可以了。
无
Hello World!
- #include<stdio.h>
- #include<algorithm>
- #include<memory.h>
- #include<iostream>
- #define MAX 100
- using namespace std;
- void swap(int a, int b){
- int t = a;
- a = b;
- b = t;
- }
- int main(int argc, char const *argv[])
- {
- cout << "Hello World!" << endl;
-
- }
本题要求你写个程序把给定的符号打印成沙漏的形状。例如给定17个“*”,要求按下列格式打印
- *****
- ***
- *
- ***
- *****
所谓“沙漏形状”,是指每行输出奇数个符号;各行符号中心对齐;相邻两行符号数差2;符号数先从大到小顺序递减到1,再从小到大顺序递增;首尾符号数相等。
给定任意N个符号,不一定能正好组成一个沙漏。要求打印出的沙漏能用掉尽可能多的符号。
输入在一行给出1个正整数N(≤1000)和一个符号,中间以空格分隔。
首先打印出由给定符号组成的最大的沙漏形状,最后在一行中输出剩下没用掉的符号数。
- 19 *
- *****
- ***
- *
- ***
- *****
- 2
- #include<bits/stdc++.h>
- using namespace std;
- int main()
- {
- int n, i = 1, j, d, max, sum = 1;
- char a;
- cin >> n >> a;
- while(1)
- {
- i += 2;
- if(sum + i * 2 > n)
- {
- max = i-2;
- d = n - sum;
- break;
- }
- sum += i*2;
-
- }
- for(i = max; i >= 1; i -= 2)
- {
- for(j = 0; j < max; j++)
- {
- if(j < (max-i) / 2)
- cout << " ";
- else if(j >= (max+i) / 2)
- break;
- else
- cout << a;
- }
- cout << endl;
- }
- for(i = 3; i <= max; i += 2)
- {
- for(j = 0; j < max; j++)
- {
- if(j < (max-i) / 2)
- cout << " ";
- else if(j >= (max+i) / 2)
- break;
- else
- cout << a;
- }
- cout << endl;
- }
- cout << d << endl;
- }
给定一个 k 位整数 N=dk−110k−1+⋯+d1101+d0 (0≤di≤9, i=0,⋯,k−1, dk−1>0),请编写程序统计每种不同的个位数字出现的次数。例如:给定 N=100311,则有 2 个 0,3 个 1,和 1 个 3。
每个输入包含 1 个测试用例,即一个不超过 1000 位的正整数 N。
对 N 中每一种不同的个位数字,以 D:M
的格式在一行中输出该位数字 D
及其在 N 中出现的次数 M
。要求按 D
的升序输出。
100311
- 0:2
- 1:3
- 3:1
- #include<stdio.h>
- #include<algorithm>
- #include<memory.h>
- #include<iostream>
- #include<string.h>
- #define MAX 1005
- using namespace std;
- int main(int argc, char const *argv[])
- {
- char ch[MAX];
- int num[MAX];
- memset(ch, 0, sizeof(ch));
- memset(num, 0, sizeof(num));
- while(scanf("%s", &ch) != EOF){
- int len = strlen(ch);
- for(int i = 0; i < len; ++i){
- num[ch[i]-'0']++;
- }
- for(int i = 0; i < 10; ++i){
- if(num[i] == 0)
- continue;
- cout << i << ':' << num[i] << endl;
- }
- }
- }
给定一个华氏温度F,本题要求编写程序,计算对应的摄氏温度C。计算公式:C=5×(F−32)/9。题目保证输入与输出均在整型范围内。
输入在一行中给出一个华氏温度。
在一行中按照格式“Celsius = C”输出对应的摄氏温度C的整数值。
150
Celsius = 65
- #include<stdio.h>
- #include<iostream>
- #include<memory.h>
- #include<string.h>
- using namespace std;
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- int C = 5 * (T - 32) / 9;
- cout << "Celsius = " << C <<endl;
- return 0;
- }
每个 PAT 考生在参加考试时都会被分配两个座位号,一个是试机座位,一个是考试座位。正常情况下,考生在入场时先得到试机座位号码,入座进入试机状态后,系统会显示该考生的考试座位号码,考试时考生需要换到考试座位就座。但有些考生迟到了,试机已经结束,他们只能拿着领到的试机座位号码求助于你,从后台查出他们的考试座位号码。
输入第一行给出一个正整数 N(≤1000),随后 N 行,每行给出一个考生的信息:准考证号 试机座位号 考试座位号
。其中准考证号
由 16 位数字组成,座位从 1 到 N 编号。输入保证每个人的准考证号都不同,并且任何时候都不会把两个人分配到同一个座位上。
考生信息之后,给出一个正整数 M(≤N),随后一行中给出 M 个待查询的试机座位号码,以空格分隔。
对应每个需要查询的试机座位号码,在一行中输出对应考生的准考证号和考试座位号码,中间用 1 个空格分隔。
- 4
- 3310120150912233 2 4
- 3310120150912119 4 1
- 3310120150912126 1 3
- 3310120150912002 3 2
- 2
- 3 4
- 3310120150912002 2
- 3310120150912119 1
- #include<stdio.h>
- #include<iostream>
- #include<memory.h>
- #include<string.h>
- #define MAX 1005
- using namespace std;
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- char num[MAX][15];
- int per[MAX], now[MAX],ru[MAX];
- memset(num, 0, sizeof(num));
- memset(per, 0, sizeof(per));
- memset(now, 0, sizeof(now));
- for(int i = 1; i <= T; ++i){
- scanf("%s %d %d", &num[i], &per[i], &now[i]);
- }
- int res = 0;
- cin >> res;
- for(int i = 1; i <= res; ++i){
- cin >> ru[i];
- }
- for(int i = 1; i <= res; ++i){
- for(int j = 1; j <= T; ++j){
- if(ru[i] == per[j])
- cout << num[j] << " " << now[j] << endl;
- }
- }
-
-
-
- return 0;
- }
一个正整数 N 的因子中可能存在若干连续的数字。例如 630 可以分解为 3×5×6×7,其中 5、6、7 就是 3 个连续的数字。给定任一正整数 N,要求编写程序求出最长连续因子的个数,并输出最小的连续因子序列。
输入在一行中给出一个正整数 N(1<N<231)。
首先在第 1 行输出最长连续因子的个数;然后在第 2 行中按 因子1*因子2*……*因子k
的格式输出最小的连续因子序列,其中因子按递增顺序输出,1 不算在内。
630
- 3
- 5*6*7
- #include<stdio.h>
- #include<algorithm>
- #include<memory.h>
- #include<math.h>
- #include<iostream>
- #define MAX 1005
- using namespace std;
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- int max = sqrt(T);
- for(int len = 12; len >= 1; --len){
- for(int start = 2; start <= max; ++start){
- long long int ans = 1;
- for(int i = start; i - start <= len - 1; ++i)
- ans *= i;
- if(T % ans == 0){
- printf("%d\n%d", len, start);
- for(int i = start + 1; i - start <= len - 1; ++i)
- printf("*%d", i);
- return 0;
- }
- }
- }
- printf("1\n%d", T);
- return 0;
- }
输入一个整数,输出每个数字对应的拼音。当整数为负数时,先输出fu
字。十个数字对应的拼音如下:
- 0: ling
- 1: yi
- 2: er
- 3: san
- 4: si
- 5: wu
- 6: liu
- 7: qi
- 8: ba
- 9: jiu
输入在一行中给出一个整数,如:1234
。
提示:整数包括负数、零和正数。
在一行中输出这个整数对应的拼音,每个数字的拼音之间用空格分开,行末没有最后的空格。如 yi er san si
。
-600
fu liu ling ling
- #include<stdio.h>
- #include<iostream>
- #include<memory.h>
- #include<string.h>
- #define MAX 1005
- using namespace std;
- int main(int argc, char const *argv[])
- {
- char num[MAX];
- scanf("%s", &num);
- int len_num = strlen(num);
- for(int i = 0; i < len_num-1; ++i){
- if(num[i] == '1')
- printf("yi ");
- if(num[i] == '2')
- printf("er ");
- if(num[i] == '3')
- printf("san ");
- if(num[i] == '4')
- printf("si ");
- if(num[i] == '5')
- printf("wu ");
- if(num[i] == '6')
- printf("liu ");
- if(num[i] == '7')
- printf("qi ");
- if(num[i] == '8')
- printf("ba ");
- if(num[i] == '9')
- printf("jiu ");
- if(num[i] == '0')
- printf("ling ");
- if(num[i] == '-')
- printf("fu ");
-
- }
- if(num[len_num-1] == '1')
- printf("yi\n");
- if(num[len_num-1] == '2')
- printf("er\n");
- if(num[len_num-1] == '3')
- printf("san\n");
- if(num[len_num-1] == '4')
- printf("si\n");
- if(num[len_num-1] == '5')
- printf("wu\n");
- if(num[len_num-1] == '6')
- printf("liu\n");
- if(num[len_num-1] == '7')
- printf("qi\n");
- if(num[len_num-1] == '8')
- printf("ba\n");
- if(num[len_num-1] == '9')
- printf("jiu\n");
- if(num[len_num-1] == '0')
- printf("ling\n");
- if(num[len_num-1] == '-')
- printf("fu\n");
-
- return 0;
- }
给定两个整数A和B,输出从A到B的所有整数以及这些数的和。
输入在一行中给出2个整数A和B,其中−100≤A≤B≤100,其间以空格分隔。
首先顺序输出从A到B的所有整数,每5个数字占一行,每个数字占5个字符宽度,向右对齐。最后在一行中按Sum = X
的格式输出全部数字的和X
。
-3 8
- -3 -2 -1 0 1
- 2 3 4 5 6
- 7 8
- Sum = 30
- #include<stdio.h>
- #include<iostream>
- #include<memory.h>
- #include<string.h>
- #define MAX 1005
- using namespace std;
- int main(int argc, char const *argv[])
- {
- int a, b;
- cin >> a >> b;
- int sum = 0;
- int count = 0;
- for(int i = a; i <= b; ++i)
- {
- sum += i;
- count++;
- }
- int flag = 1;
- for(int i = a; i < b; ++i){
- if(flag != 5)
- {
- printf("%5d", i);
- flag++;
- }
- else{
- printf("%5d\n", i);
- flag = 1;
- }
- }
- printf("%5d\n", b);
- printf("Sum = %d\n", sum);
- return 0;
-
- }
本题的要求很简单,就是求N
个数字的和。麻烦的是,这些数字是以有理数分子/分母
的形式给出的,你输出的和也必须是有理数的形式。
输入第一行给出一个正整数N
(≤100)。随后一行按格式a1/b1 a2/b2 ...
给出N
个有理数。题目保证所有分子和分母都在长整型范围内。另外,负数的符号一定出现在分子前面。
输出上述数字和的最简形式 —— 即将结果写成整数部分 分数部分
,其中分数部分写成分子/分母
,要求分子小于分母,且它们没有公因子。如果结果的整数部分为0,则只输出分数部分。
- 5
- 2/5 4/15 1/30 -2/60 8/3
3 1/3
- 2
- 4/3 2/3
2
- 3
- 1/3 -1/6 1/8
7/24
- #include<stdio.h>
- #include<iostream>
- #include<memory.h>
- #include<string.h>
- #define MAX 1005
- using namespace std;
- long long int gcd(long long int x, long long int y){
- while(y == 0)
- return x;
- return gcd(y, x%y);
- }
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- long long int son[MAX], mon[MAX];
- for(int i = 0; i < T; ++i){
- scanf("%lld/%lld", &son[i], &mon[i]);
- }
- long long int g = 0;
- for(int i = 0; i < T-1; ++i){
- if(mon[i] == 0 || mon[i+1] == 0)
- continue;
- g = mon[i] / gcd(mon[i], mon[i + 1]) * mon[i + 1];
- }
- if(g != 0){
- for(int i = 0; i < T; ++i){
- son[i] *= g / mon[i];
- }
- long long int sum = 0;
- for(int i = 0; i < T; ++i){
- //cout << son[i] << endl;
- sum += son[i];
- }
- if(sum % g == 0)
- cout << sum/g << endl;
- else{
- if(sum / g != 0)
- cout << sum /g << " ";
- long long int temp = sum % g;
- long long int res = gcd(temp, g);
- cout << temp / res << "/" << g / res << endl;
- }
- }
- else{
- cout << 0 << endl;
- }
- return 0;
-
- }
本题要求将输入的任意3个整数从小到大输出。
输入在一行中给出3个整数,其间以空格分隔。
在一行中将3个整数从小到大输出,其间以“->”相连。
4 2 8
2->4->8
- #include<stdio.h>
- #include<iostream>
- #include<algorithm>
- #include<memory.h>
- #include<string.h>
- #define MAX 5
- using namespace std;
- int main(int argc, char const *argv[])
- {
- int a[MAX];
- memset(a, 0, sizeof(a));
- for(int i = 0; i < 3; ++i){
- cin >> a[i];
- }
- sort(a, a+3);
- for(int i = 0; i < 2; ++i){
- cout << a[i] << "->";
- }
- cout << a[2] <<endl;
-
- return 0;
- }
本题要求你计算A−B。不过麻烦的是,A和B都是字符串 —— 即从字符串A中把字符串B所包含的字符全删掉,剩下的字符组成的就是字符串A−B。
输入在2行中先后给出字符串A和B。两字符串的长度都不超过104,并且保证每个字符串都是由可见的ASCII码和空白字符组成,最后以换行符结束。
在一行中打印出A−B的结果字符串。
- I love GPLT! It's a fun game!
- aeiou
I lv GPLT! It's fn gm!
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- string A, B;
- int flag[MAX];
- memset(flag, 0, sizeof(flag));
- getline(cin, A); //getline函数,用于读取一行字符串
- getline(cin, B);
- for(int i = 0; i < A.length(); ++i){
- for(int j = 0; j < B.length(); ++j){
- if(A[i] == B[j])
- flag[i] = 1;
- }
- }
- for(int i = 0; i < A.length(); ++i){
- if(flag[i] != 1)
- cout << A[i];
- }
- cout << endl;
- return 0;
- }
真的没骗你,这道才是简单题 —— 对任意给定的不超过 10 的正整数 n,要求你输出 2n。不难吧?
输入在一行中给出一个不超过 10 的正整数 n。
在一行中按照格式 2^n = 计算结果
输出 2n 的值。
5
2^5 = 32
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int pow(int a, int b){
- int ans = 1;
- for(int i = 1; i <= b; ++i){
- ans *= a;
- }
- return ans;
- }
- int main(int argc, char const *argv[])
- {
- int n;
- cin >> n;
- cout << "2^" << n << " = " << pow(2, n);
-
- }
对于给定的正整数N,需要你计算 S=1!+2!+3!+...+N!。
输入在一行中给出一个不超过10的正整数N。
在一行中输出S的值。
3
9
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- int n;
- cin >> n;
- int sum = 0;
- for(int i = 1; i <= n; ++i){
- int ans = 1;
- for(int j = i; j >= 1; --j){
- ans *= j;
- }
- sum += ans;
- }
- cout << sum << endl;
- }
这次真的没骗你 —— 这道超级简单的题目没有任何输入。
你只需要在一行中输出事实:This is a simple problem.
就可以了。
无
This is a simple problem.
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- cout << "This is a simple problem." << endl;
- }
美国总统奥巴马不仅呼吁所有人都学习编程,甚至以身作则编写代码,成为美国历史上首位编写计算机代码的总统。2014年底,为庆祝“计算机科学教育周”正式启动,奥巴马编写了很简单的计算机代码:在屏幕上画一个正方形。现在你也跟他一起画吧!
输入在一行中给出正方形边长N(3≤N≤21)和组成正方形边的某种字符C
,间隔一个空格。
输出由给定字符C
画出的正方形。但是注意到行间距比列间距大,所以为了让结果看上去更像正方形,我们输出的行数实际上是列数的50%(四舍五入取整)。
10 a
- aaaaaaaaaa
- aaaaaaaaaa
- aaaaaaaaaa
- aaaaaaaaaa
- aaaaaaaaaa
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- int n;
- char ch;
- cin >> n >> ch;
- double m = (double)n / 2;
- int tem = (int) n / 2;
- if(m - tem >= 0.5){
- tem += 1;
- }else{
- tem = tem;
- }
- for(int i = 0; i < tem; ++i){
- for(int j = 0; j < n; ++j){
- printf("%c", ch);
- }
- printf("\n");
- }
- }
一个合法的身份证号码由17位地区、日期编号和顺序编号加1位校验码组成。校验码的计算规则如下:
首先对前17位数字加权求和,权重分配为:{7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};然后将计算的和对11取模得到值Z
;最后按照以下关系对应Z
值与校验码M
的值:
- Z:0 1 2 3 4 5 6 7 8 9 10
- M:1 0 X 9 8 7 6 5 4 3 2
现在给定一些身份证号码,请你验证校验码的有效性,并输出有问题的号码。
输入第一行给出正整数N(≤100)是输入的身份证号码的个数。随后N行,每行给出1个18位身份证号码。
按照输入的顺序每行输出1个有问题的身份证号码。这里并不检验前17位是否合理,只检查前17位是否全为数字且最后1位校验码计算准确。如果所有号码都正常,则输出All passed
。
- 4
- 320124198808240056
- 12010X198901011234
- 110108196711301866
- 37070419881216001X
- 12010X198901011234
- 110108196711301866
- 37070419881216001X
- 2
- 320124198808240056
- 110108196711301862
All passed
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- int flag[MAX];
- memset(flag, 0, sizeof(flag));
- int weigh[] = {7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};
- char card[MAX][20];
- memset(card, 0, sizeof(card));
- for(int i = 0; i < T; ++i){
- scanf("%s", &card[i]);
- }
- for(int j = 0; j < T; ++j){
- for(int i = 0; i < 17; ++i){
- if(card[j][i] < '0' || card[j][i] > '9')
- flag[j] = 1;
- }
- }
- for(int i = 0; i < T; ++i){
- int sum = 0;
- for(int j = 0; j < 17; ++j){
- sum += weigh[j] * (card[i][j] - '0');
- }
- int t = sum % 11;
- char t_ch;
- if(t == 1){
- t_ch = '0';
- }else if(t == 0){
- t_ch = '1';
- }else if(t == 2){
- t_ch = 'X';
- }else if(t == 3){
- t_ch = '9';
- }else if(t == 4){
- t_ch = '8';
- }else if(t == 5){
- t_ch = '7';
- }else if(t == 6){
- t_ch = '6';
- }else if(t == 7){
- t_ch = '5';
- }else if(t == 8){
- t_ch = '4';
- }else if(t == 9){
- t_ch = '3';
- }else if(t == 10){
- t_ch = '2';
- }
- if(t_ch != card[i][17]){
- flag[i] = 1;
- }
- }
- int flag2 = 0;
- for(int i = 0; i < T; ++i){
- if(flag[i] == 1)
- flag2 = 1;
- }
- if(flag2){
- for(int i = 0; i < T; ++i){
- if(flag[i] == 1){
- for(int j = 0; j < 18; ++j)
- cout << card[i][j];
- cout << endl;
- }
-
- }
- }else
- cout << "All passed" <<endl;
- }
-
-
一个整数“犯二的程度”定义为该数字中包含2的个数与其位数的比值。如果这个数是负数,则程度增加0.5倍;如果还是个偶数,则再增加1倍。例如数字-13142223336
是个11位数,其中有3个2,并且是负数,也是偶数,则它的犯二程度计算为:3/11×1.5×2×100%,约为81.82%。本题就请你计算一个给定整数到底有多二。
输入第一行给出一个不超过50位的整数N
。
在一行中输出N
犯二的程度,保留小数点后两位。
-13142223336
81.82%
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- string num;
- double per = 1;
- int ans = 0;
- int sum = 0;
- getline(cin, num);
- if(num[0] == '-'){
- per *= 1.5;
- sum = num.length() - 1;
- }else{
- sum = num.length();
- }
- if(num[num.length() - 1] % 2 == 0)
- per *= 2;
- for(int i = 0; i < num.length(); ++i){
- if(num[i] == '2')
- ans++;
- }
- // cout << ans << " " << sum << endl;
- double two = (double)ans / sum;
- two = two * per * 100;
- //cout << per << endl;
- printf("%.2lf", two);
- cout << "%" <<endl;
- }
-
-
微博上有个自称“大笨钟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
是输入的时间。
19:05
DangDangDangDangDangDangDangDang
07:05
Only 07:05. Too early to Dang.
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- int hou, min;
- scanf("%d:%d", &hou, &min);
- if(hou == 0 && min == 0){
- printf("Only 00:00. Too early to Dang.");
- }else if(hou == 0 && min < 10){
- printf("Only 00:0%d. Too early to Dang.",min);
- }else if(hou == 0 && min >= 10){
- printf("Only 00:%d. Too early to Dang.",min);
- }else if(hou > 0 && hou <= 9 && min < 10){
- printf("Only 0%d:0%d. Too early to Dang.",hou, min);
- }else if(hou > 0 && hou <= 9 && min >= 10){
- printf("Only 0%d:%d. Too early to Dang.",hou, min);
- }else if(hou > 9 && hou < 12 && min < 10){
- printf("Only %d:0%d. Too early to Dang.",hou, min);
- }else if(hou > 9 && hou < 12 && min >= 10){
- printf("Only %d:%d. Too early to Dang.",hou, min);
- }else if(hou == 12 && min == 0){
- printf("Only 12:00. Too early to Dang.");
- }else{
- if(min > 0){
- for(int i = 0; i <= hou - 12; ++i){
- cout <<"Dang";
- }
- cout <<endl;
- }else{
- for(int i = 0; i <= hou - 1 - 12; ++i){
- cout <<"Dang";
- }
- cout << endl;
- }
- }
- }
-
-
划拳是古老中国酒文化的一个有趣的组成部分。酒桌上两人划拳的方法为:每人口中喊出一个数字,同时用手比划出一个数字。如果谁比划出的数字正好等于两人喊出的数字之和,谁就输了,输家罚一杯酒。两人同赢或两人同输则继续下一轮,直到唯一的赢家出现。
下面给出甲、乙两人的酒量(最多能喝多少杯不倒)和划拳记录,请你判断两个人谁先倒。
输入第一行先后给出甲、乙两人的酒量(不超过100的非负整数),以空格分隔。下一行给出一个正整数N
(≤100),随后N
行,每行给出一轮划拳的记录,格式为:
甲喊 甲划 乙喊 乙划
其中喊
是喊出的数字,划
是划出的数字,均为不超过100的正整数(两只手一起划)。
在第一行中输出先倒下的那个人:A
代表甲,B
代表乙。第二行中输出没倒的那个人喝了多少杯。题目保证有一个人倒下。注意程序处理到有人倒下就终止,后面的数据不必处理。
- 1 1
- 6
- 8 10 9 12
- 5 10 5 10
- 3 8 5 12
- 12 18 1 13
- 4 16 12 15
- 15 1 1 16
- A
- 1
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- int cap_1 = 0, cap_2 = 0;
- cin >> cap_1 >> cap_2;
- int T;
- int dir_1 = 0, dir_2 = 0;
- cin >> T;
- int say_1[MAX], say_2[MAX], drink_1[MAX], drink_2[MAX];
- memset(say_1, 0, sizeof(say_1));
- memset(say_2, 0, sizeof(say_2));
- memset(drink_1, 0, sizeof(drink_1));
- memset(drink_2, 0, sizeof(drink_2));
- for(int i = 0; i < T; ++i){
- cin >> say_1[i] >> drink_1[i] >> say_2[i] >> drink_2[i];
- }
- for(int i = 0; i < T; ++i){
- if(cap_1 < 0 || cap_2 < 0)
- break;
- if(say_1[i] + say_2[i] == drink_1[i] && say_1[i] + say_2[i] == drink_2[i])
- continue;
- if(say_1[i] + say_2[i] != drink_1[i] && say_1[i] + say_2[i] != drink_2[i])
- continue;
- if(say_1[i] + say_2[i] == drink_1[i] && say_1[i] + say_2[i] != drink_2[i]){
- cap_1--;
- dir_1++;
- }
- if(say_1[i] + say_2[i] != drink_1[i] && say_1[i] + say_2[i] == drink_2[i]){
- cap_2--;
- dir_2++;
- }
- }
- if(cap_1 < 0){
- cout << "A" << endl;
- cout << dir_2 <<endl;
- }
- else{
- cout << "B" << endl;
- cout << dir_1 <<endl;
- }
- }
-
-
当芸芸众生忙着在朋友圈中发照片的时候,总有一些人因为太帅而没有朋友。本题就要求你找出那些帅到没有朋友的人。
输入第一行给出一个正整数N
(≤100),是已知朋友圈的个数;随后N
行,每行首先给出一个正整数K
(≤1000),为朋友圈中的人数,然后列出一个朋友圈内的所有人——为方便起见,每人对应一个ID号,为5位数字(从00000到99999),ID间以空格分隔;之后给出一个正整数M
(≤10000),为待查询的人数;随后一行中列出M
个待查询的ID,以空格分隔。
注意:没有朋友的人可以是根本没安装“朋友圈”,也可以是只有自己一个人在朋友圈的人。虽然有个别自恋狂会自己把自己反复加进朋友圈,但题目保证所有K
超过1的朋友圈里都至少有2个不同的人。
按输入的顺序输出那些帅到没朋友的人。ID间用1个空格分隔,行的首尾不得有多余空格。如果没有人太帅,则输出No one is handsome
。
注意:同一个人可以被查询多次,但只输出一次。
- 3
- 3 11111 22222 55555
- 2 33333 44444
- 4 55555 66666 99999 77777
- 8
- 55555 44444 10000 88888 22222 11111 23333 88888
10000 88888 23333
- 3
- 3 11111 22222 55555
- 2 33333 44444
- 4 55555 66666 99999 77777
- 4
- 55555 44444 22222 11111
No one is handsome
- #include<stdio.h>
- #include<algorithm>
- #include<memory.h>
- #include<math.h>
- #include<iostream>
- #define MAX 1000005
- using namespace std;
- int visit[MAX];
- int main(int argc, char const *argv[])
- {
- int n, m, k, id;
- cin >> n;
- memset(visit, 0, sizeof(visit));
- for(int i = 0; i < n; ++i){
- scanf("%d", &k);
- for(int j = 0; j < k; ++j){
- scanf("%d", &id);
- if(k == 1)
- break;
- visit[id] = 1;
- }
- }
- cin >> m;
- int pre_id, flag = 0;
- for(int i = 0; i < m; ++i){
- cin >> pre_id;
- if(!visit[pre_id]){
- if(++flag > 1)
- printf(" ");
- printf("%05d", pre_id);
- visit[pre_id] = 1;
- }
- }
- if(flag == 0)
- cout << "No one is handsome" << endl;
- }
这道超级简单的题目没有任何输入。
你只需要把这句很重要的话 —— “I'm gonna WIN!”——连续输出三遍就可以了。
注意每遍占一行,除了每行的回车不能有任何多余字符。
无
- I'm gonna WIN!
- I'm gonna WIN!
- I'm gonna WIN!
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- cout << "I'm gonna WIN!" <<endl;
- cout << "I'm gonna WIN!" <<endl;
- cout << "I'm gonna WIN!" <<endl;
- }
-
-
给定N
个正整数,请统计奇数和偶数各有多少个?
输入第一行给出一个正整N
(≤1000);第2行给出N
个非负整数,以空格分隔。
在一行中先后输出奇数的个数、偶数的个数。中间以1个空格分隔。
- 9
- 88 74 101 26 15 0 34 22 77
3 6
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- int num[MAX];
- for(int i = 0; i < T; ++i){
- cin >> num[i];
- }
- int odd = 0, ou = 0;
- for(int i = 0; i < T; ++i){
- if(num[i]%2)
- odd++;
- else
- ou++;
- }
- cout << odd << " " << ou << endl;
- }
-
-
给定一个长度不超过10000的、仅由英文字母构成的字符串。请将字符重新调整顺序,按GPLTGPLT....
这样的顺序输出,并忽略其它字符。当然,四种字符(不区分大小写)的个数不一定是一样多的,若某种字符已经输出完,则余下的字符仍按GPLT
的顺序打印,直到所有字符都被输出。
输入在一行中给出一个长度不超过10000的、仅由英文字母构成的非空字符串。
在一行中按题目要求输出排序后的字符串。题目保证输出非空。
pcTclnGloRgLrtLhgljkLhGFauPewSKgt
GPLTGPLTGLTGLGLL
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- string sen;
- getline(cin, sen);
- int g = 0, p = 0, l = 0, t = 0;
- for(int i = 0; i < sen.length(); ++i){
- if(sen[i] == 'g' || sen[i] == 'G')
- g++;
- else if(sen[i] == 'p' || sen[i] == 'P')
- p++;
- else if(sen[i] == 'l' || sen[i] == 'L')
- l++;
- else if(sen[i] == 't' || sen[i] == 'T')
- t++;
- }
- while(g != 0 || p != 0 || l != 0 || t != 0){
- if(g != 0){
- cout << 'G';
- g--;
- }
- if(p != 0){
- cout << 'P';
- p--;
- }
- if(l != 0){
- cout << 'L';
- l--;
- }
- if(t != 0){
- cout << 'T';
- t--;
- }
- }
- }
-
-
如果今天是星期三,后天就是星期五;如果今天是星期六,后天就是星期一。我们用数字1到7对应星期一到星期日。给定某一天,请你输出那天的“后天”是星期几。
输入第一行给出一个正整数D
(1 ≤ D
≤ 7),代表星期里的某一天。
在一行中输出D
天的后天是星期几。
3
5
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- int day;
- cin >> day;
- if(day == 6)
- cout << 1 << endl;
- else if(day == 7)
- cout << 2 << endl;
- else
- cout << day + 2 << endl;
- }
-
-
题的目标很简单,就是求两个正整数A
和B
的和,其中A
和B
都在区间[1,1000]。稍微有点麻烦的是,输入并不保证是两个正整数。
输入在一行给出A
和B
,其间以空格分开。问题是A
和B
不一定是满足要求的正整数,有时候可能是超出范围的数字、负数、带小数点的实数、甚至是一堆乱码。
注意:我们把输入中出现的第1个空格认为是A
和B
的分隔。题目保证至少存在一个空格,并且B
不是一个空字符串。
如果输入的确是两个正整数,则按格式A + B = 和
输出。如果某个输入不合要求,则在相应位置输出?
,显然此时和也是?
。
- #include<iostream>
- #include<string>
- using namespace std;
- int main()
- {
- string S;
- int flagA = 0, flagB = 0;
- getline(cin,S);//使用getline来接收包括空格在内的字符
- int sumA = 0, sumB = 0, Base;
- for (int i =0; i <S.length(); i++)
- {
- if(S[i]==' ')//碰到第一个空格
- {
- Base = 1;//初始化
- for(int j=i-1;j>=0;j--)//计算A,注意j的范围从前一个字符到0
- {
- if (S[j]<'0' || S[j]>'9')//如果字符不为数字
- {
- flagA = 1;
- break;//标识,退出
- }
- else
- {
- sumA += Base*(S[j] - '0');//如果为数字,累加
- Base *= 10;
- }
- if(i==0)//如果第一个字符是空格
- {
- flagA=1;
- break;//标识,退出
- }
- }
- if (sumA>1000||sumA==0)//如果累加和不在0到1000范围内
- flagA = 1;
- Base = 1;//注意重新初始化
- for(int j=S.length()-1;j>i;j--)//计算B,注意j的范围从最后一个字符到i+1
- {
- if (S[j]<'0' || S[j]>'9')
- {
- flagB = 1;
- break;
- }
- else
- {
- sumB += Base*(S[j] - '0');
- Base *= 10;
- }
- }
- if (sumB>1000||sumB==0)
- flagB = 1;
- break;
- }
- }
- if (flagA)
- {
- if (flagB)
- cout << "? + ? = ?";
- else
- cout << "? + " << sumB << " = ?";
- }
- else
- {
- if (!flagB)
- cout << sumA << " + " << sumB << " = " << sumA + sumB;
- else
- cout << sumA << " + ? = ?";
- }
- return 0;
- }
这道超级简单的题目没有任何输入。
你只需要把这句很重要的话 —— “I Love GPLT”——竖着输出就可以了。
所谓“竖着输出”,是指每个字符占一行(包括空格),即每行只能有1个字符和回车。
无
- I
-
- L
- o
- v
- e
-
- G
- P
- L
- T
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- cout << "I" << endl;
- cout << " " << endl;
- cout << "L" << endl;
- cout << "o" << endl;
- cout << "v" << endl;
- cout << "e" << endl;
- cout << " " << endl;
- cout << "G" << endl;
- cout << "P" << endl;
- cout << "L" << endl;
- cout << "T" << endl;
- }
-
-
下面是新浪微博上曾经很火的一张图:
一时间网上一片求救声,急问这个怎么破。其实这段代码很简单,index
数组就是arr
数组的下标,index[0]=2
对应 arr[2]=1
,index[1]=0
对应 arr[0]=8
,index[2]=3
对应 arr[3]=0
,以此类推…… 很容易得到电话号码是18013820100
。
本题要求你编写一个程序,为任何一个电话号码生成这段代码 —— 事实上,只要生成最前面两行就可以了,后面内容是不变的。
输入在一行中给出一个由11位数字组成的手机号码。
为输入的号码生成代码的前两行,其中arr
中的数字必须按递减顺序给出。
18013820100
- int[] arr = new int[]{8,3,2,1,0};
- int[] index = new int[]{3,0,4,3,1,0,2,4,3,4,4};
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- using namespace std;
- #define MAX 15
- int main(int argc, char const *argv[])
- {
- string pho;
- getline(cin, pho);
- int arr[MAX];
- int tem[MAX];
- memset(arr, 0, sizeof(arr));
- for(int i = 0; i < pho.length(); ++i){
- arr[pho[i] - '0'] = 1;
- }
- int num = 0;
- for(int i = MAX - 1; i >= 0; --i){
- if(arr[i] != 0){
- tem[num] = i;
- num++;
- }
- }
- cout<< "int[] arr = new int[]{" << tem[0];
- for(int i = 1; i < num; ++i){
- cout << "," << tem[i];
- }
- cout << "};" << endl;
- cout << "int[] index = new int[]{";
- for(int i = 0; i < pho.length(); ++i){
- for(int j = 0; j < num; ++j){
- if(((pho[i]-'0') == tem[j]) && (i != pho.length() - 1))
- cout << j << ",";
- else if(((pho[i]-'0') == tem[j]) && (i == pho.length() - 1))
- cout << j ;
- }
- }
- cout << "};" << endl;
-
- }
-
-
本题的目标很简单,就是判断一个给定的正整数是否素数。
输入在第一行给出一个正整数N
(≤ 10),随后N
行,每行给出一个小于231的需要判断的正整数。
对每个需要判断的正整数,如果它是素数,则在一行中输出Yes
,否则输出No
。
- 2
- 11
- 111
- Yes
- No
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 15
- int prime(int a){
- if(a == 1)
- return 1;
- for(int i = 1; i < sqrt(a); ++i){
- if(a % i == 0 && i != 1){
- return 1;
- }
- }
- return 0;
- }
- int main(int argc, char const *argv[])
- {
-
- int T;
- unsigned long long a[MAX];
- cin >> T;
- memset(a, 0, sizeof(a));
- for(int i = 0; i < T; ++i){
- cin >> a[i];
- }
- for(int i = 0; i < T; ++i){
- int ans = prime(a[i]);
-
- if(ans == 0){
- cout << "Yes" << endl;
- }
- else if(ans == 1){
- cout << "No" << endl;
- }
- }
- }
-
-
据说一个人的标准体重应该是其身高(单位:厘米)减去100、再乘以0.9所得到的公斤数。已知市斤是公斤的两倍。现给定某人身高,请你计算其标准体重应该是多少?(顺便也悄悄给自己算一下吧……)
输入第一行给出一个正整数H
(100 < H
≤ 300),为某人身高。
在一行中输出对应的标准体重,单位为市斤,保留小数点后1位。
169
124.2
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 15
- int main(int argc, char const *argv[])
- {
- int high;
- cin >> high;
- double standard = ((high - 100) * 0.9) * 2;
- printf("%.1lf\n", standard);
-
- }
-
-
“一帮一学习小组”是中小学中常见的学习组织方式,老师把学习成绩靠前的学生跟学习成绩靠后的学生排在一组。本题就请你编写程序帮助老师自动完成这个分配工作,即在得到全班学生的排名后,在当前尚未分组的学生中,将名次最靠前的学生与名次最靠后的异性学生分为一组。
输入第一行给出正偶数N
(≤50),即全班学生的人数。此后N
行,按照名次从高到低的顺序给出每个学生的性别(0代表女生,1代表男生)和姓名(不超过8个英文字母的非空字符串),其间以1个空格分隔。这里保证本班男女比例是1:1,并且没有并列名次。
每行输出一组两个学生的姓名,其间以1个空格分隔。名次高的学生在前,名次低的学生在后。小组的输出顺序按照前面学生的名次从高到低排列。
- 8
- 0 Amy
- 1 Tom
- 1 Bill
- 0 Cindy
- 0 Maya
- 1 John
- 1 Jack
- 0 Linda
- Amy Jack
- Tom Linda
- Bill Maya
- Cindy John
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 55
- int main(int argc, char const *argv[])
- {
- int T;
- int sex[MAX];
- char name[MAX][10];
- cin >> T;
- memset(sex, 0, sizeof(sex));
- memset(name, 0, sizeof(name));
- for(int i = 0; i < T; ++i){
- scanf("%d %s", &sex[i], &name[i]);
- }
- int flag[MAX];
- memset(flag, 0, sizeof(flag));
- for(int i = 0; i < T; ++i){
- for(int j = T-1; j >= 0; --j){
- 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){
- cout << name[i] << " " << name[j] << endl;
- flag[i] = 1;
- flag[j] = 1;
- }
- }
- }
- }
-
-
据说一个人的标准体重应该是其身高(单位:厘米)减去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!
。
- 3
- 169 136
- 150 81
- 178 155
- You are wan mei!
- You are tai shou le!
- You are tai pang le!
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 55
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- int high[MAX];
- int weigh[MAX];
- for(int i = 0; i < T; ++i){
- cin >> high[i] >> weigh[i];
- }
- double standard;
- double ans = 0;
- for(int i = 0; i < T; ++i){
- standard = (double)(((high[i] - 100) * 0.9) * 2);
- if(standard < weigh[i]){
- double tem_w = (double)weigh[i] - standard;
- double tem_s = (double)standard * 0.1;
- if(tem_w < tem_s)
- cout << "You are wan mei!" << endl;
- else
- cout << "You are tai pang le!" <<endl;
- }
- else if(standard > weigh[i]){
- double tem_w = (double)standard - weigh[i];
- double tem_s = (double)standard * 0.1;
- if(tem_w < tem_s)
- cout << "You are wan mei!" << endl;
- else
- cout << "You are tai shou le!" << endl;
- }else{
- cout << "You are wan mei!" << endl;
- }
- }
- }
根据新浪微博上的消息,有一位开发者不满NPM(Node Package Manager)的做法,收回了自己的开源代码,其中包括一个叫left-pad的模块,就是这个模块把javascript里面的React/Babel干瘫痪了。这是个什么样的模块?就是在字符串前填充一些东西到一定的长度。例如用*
去填充字符串GPLT
,使之长度为10,调用left-pad的结果就应该是******GPLT
。Node社区曾经对left-pad紧急发布了一个替代,被严重吐槽。下面就请你来实现一下这个模块。
输入在第一行给出一个正整数N
(≤104)和一个字符,分别是填充结果字符串的长度和用于填充的字符,中间以1个空格分开。第二行给出原始的非空字符串,以回车结束。
在一行中输出结果字符串。
- 15 _
- I love GPLT
____I love GPLT
- 4 *
- this is a sample for cut
cut
- #include<stdio.h>
- #include<algorithm>
- #include<memory.h>
- #include<string>
- #include<iostream>
- using namespace std;
- int main(int argc, char const *argv[])
- {
- int T;
- char ch;
- string sen;
- scanf("%d %c", &T, &ch);
- getchar();
- getline(cin, sen);
- int len = sen.length();
- if(len >= T){
- for(int i = len - T; i < len; ++i)
- cout << sen[i];
- cout << endl;
- }
- else if(len < T){
- for(int i = 0; i < T - sen.length(); ++i)
- cout << ch;
- for(int i = 0; i < sen.length(); ++i)
- cout << sen[i];
- cout << endl;
- }
-
-
- return 0;
-
- }
以上是新浪微博中一奇葩贴:“我出生于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位数字不同的条件。
1988 4
25 2013
1 2
0 0001
- #include<stdio.h>
- #include<algorithm>
- #include<memory.h>
- #include<string>
- #include<iostream>
- #include<set>
- using namespace std;
- int find(int year){
- set<int> s;
- int a, b, c, d;
- a = year % 10;
- b = year / 10 % 10;
- c = year / 100 % 10;
- d = year / 1000;
- s.insert(a);
- s.insert(b);
- s.insert(c);
- s.insert(d);
- return s.size();
- }
- int main(int argc, char const *argv[])
- {
- int year, n;
- cin >> year >> n;
- int count = 0;
- while(find(year) != n){
- year++;
- count++;
- }
- printf("%d %04d\n", count, year);
- }
微博上有个“点赞”功能,你可以为你喜欢的博文点个赞表示支持。每篇博文都有一些刻画其特性的标签,而你点赞的博文的类型,也间接刻画了你的特性。本题就要求你写个程序,通过统计一个人点赞的纪录,分析这个人的特性。
输入在第一行给出一个正整数N(≤1000),是该用户点赞的博文数量。随后N行,每行给出一篇被其点赞的博文的特性描述,格式为“K F1⋯FK”,其中1≤K≤10,Fi(i=1,⋯,K)是特性标签的编号,我们将所有特性标签从1到1000编号。数字间以空格分隔。
统计所有被点赞的博文中最常出现的那个特性标签,在一行中输出它的编号和出现次数,数字间隔1个空格。如果有并列,则输出编号最大的那个。
- 4
- 3 889 233 2
- 5 100 3 233 2 73
- 4 3 73 889 2
- 2 233 123
233 3
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- int T;
- int bolg[MAX];
- memset(bolg, 0, sizeof(bolg));
- cin >> T;
- while(T--){
- int n;
- cin >> n;
- int tem;
- for(int i = 1; i <= n; ++i){
- cin >> tem;
- bolg[tem]++;
- }
- }
- int ans = 0;
- int max = 0;
- for(int i = 1; i <= 1000; ++i)
- {
- if(max <= bolg[i]){
- ans = i;
- max = bolg[i];
- }
- }
- cout << ans << " " << bolg[ans] << endl;
-
- }
以上是朋友圈中一奇葩贴:“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 ...”。
- GaoXZh
- Magi
- Einst
- Quark
- LaoLao
- FatMouse
- ZhaShen
- fantacy
- latesum
- SenSen
- QuanQuan
- whatever
- whenever
- Potaty
- hahaha
- .
Magi and Potaty are inviting you to dinner...
- LaoLao
- FatMouse
- whoever
- .
FatMouse is the only one for you...
- LaoLao
- .
Momo... No one is for you ...
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- char list[MAX][15];
- int i = 0;
- while(1){
- cin >> list[i];
- if(list[i][0] == '.')
- break;
- i++;
- }
- i--;
- if(i < 1)
- cout << "Momo... No one is for you ..." << endl;
- else if(i < 13)
- cout << list[1] << " is the only one for you..." << endl;
- else
- cout << list[1] << " and " << list[13] << " are inviting you to dinner..." << endl;
- }
看我没骗你吧 —— 这是一道你可以在 10 秒内完成的题:给定两个绝对值不超过 100 的整数 A 和 B,输出 A 乘以 B 的值。
输入在第一行给出两个整数 A 和 B(−100≤A,B≤100),数字间以空格分隔。
在一行中输出 A 乘以 B 的值。
-8 13
-104
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- int a, b;
- cin >> a >> b;
- cout << a * b << endl;
- }
真的是简单题哈 —— 给定两个绝对值不超过100的整数A和B,要求你按照“A/B=商”的格式输出结果。
输入在第一行给出两个整数A和B(−100≤A,B≤100),数字间以空格分隔。
在一行中输出结果:如果分母是正数,则输出“A/B=商”;如果分母是负数,则要用括号把分母括起来输出;如果分母为零,则输出的商应为Error
。输出的商应保留小数点后2位。
-1 2
-1/2=-0.50
1 -3
1/(-3)=-0.33
5 0
5/0=Error
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- double a, b;
- double sum;
- cin >> a >> b;
- sum = (double)(a / b);
- if(b > 0)
- printf("%.0lf/%.0lf=%.2lf\n", a, b, sum);
- else if (b < 0)
- printf("%.0lf/(-%.0lf)=%.2lf\n", a, -b, sum);
- else
- printf("%.0lf/%.0lf=Error", a, b);
- }
这道超级简单的题目没有任何输入。
你只需要在第一行中输出程序员钦定名言“Hello World”,并且在第二行中输出更新版的“Hello New World”就可以了。
无
- Hello World
- Hello New World
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- cout << "Hello World" << endl;
- cout << "Hello New World" <<endl;
- }
中国的古人写文字,是从右向左竖向排版的。本题就请你编写程序,把一段文字按古风排版。
输入在第一行给出一个正整数N(<100),是每一列的字符数。第二行给出一个长度不超过1000的非空字符串,以回车结束。
按古风格式排版给定的字符串,每列N个字符(除了最后一列可能不足N个)。
- 4
- This is a test case
- asa T
- st ih
- e tsi
- ce s
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- string ch;
- getchar();
- getline(cin, ch);
- char mp[MAX][MAX];
- memset(mp, 0, sizeof(mp));
- int num = ch.length();
- int row = num / T;
- if(num % T != 0)
- row ++;
- int k = 0;
- for(int i = 0; i < T; ++i){
- for(int j = 1; j <= row; ++j){
- mp[i][j] = ' ';
- }
- }
- for(int i = row ; i >= 0; --i){
- for(int j = 0; j < T; ++j){
- if(k == num)
- break;
- mp[j][i] = ch[k];
- k++;
- }
- }
- for(int i = 0; i < T; ++i){
- for(int j = 1; j <= row; ++j){
- cout << mp[i][j];
- }
- cout << endl;
- }
-
-
-
- }
专家通过多组情侣研究数据发现,最佳的情侣身高差遵循着一个公式:(女方的身高)×1.09 =(男方的身高)。如果符合,你俩的身高差不管是牵手、拥抱、接吻,都是最和谐的差度。
下面就请你写个程序,为任意一位用户计算他/她的情侣的最佳身高。
输入第一行给出正整数N(≤10),为前来查询的用户数。随后N行,每行按照“性别 身高”的格式给出前来查询的用户的性别和身高,其中“性别”为“F”表示女性、“M”表示男性;“身高”为区间 [1.0, 3.0] 之间的实数。
对每一个查询,在一行中为该用户计算出其情侣的最佳身高,保留小数点后2位。
- 2
- M 1.75
- F 1.8
- 1.61
- 1.96
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- int n;
- cin >> n;
- while(n--){
- char ch;
- double high;
- cin >> ch >> high;
- if(ch == 'F')
- printf("%.2lf\n", high * 1.09);
- else
- printf("%.2lf\n",high / 1.09);
- }
-
-
-
- }
对方不想和你说话,并向你扔了一串数…… 而你必须从这一串数字中找到“250”这个高大上的感人数字。
输入在一行中给出不知道多少个绝对值不超过1000的整数,其中保证至少存在一个“250”。
在一行中输出第一次出现的“250”是对方扔过来的第几个数字(计数从1开始)。题目保证输出的数字在整型范围内。
888 666 123 -233 250 13 250 -222
5
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- int n;
- int num = 0;
- while(cin >> n && n != 250){
- num++;
- }
- cout << num+1 << endl;
-
- }
世界上不同国家有不同的写日期的习惯。比如美国人习惯写成“月-日-年”,而中国人习惯写成“年-月-日”。下面请你写个程序,自动把读入的美国格式的日期改写成中国习惯的日期。
输入在一行中按照“mm-dd-yyyy”的格式给出月、日、年。题目保证给出的日期是1900年元旦至今合法的日期。
在一行中按照“yyyy-mm-dd”的格式给出年、月、日。
03-15-2017
2017-03-15
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- int year, month, day;
- scanf("%d-%d-%d", &month, &day, &year);
- if(day < 10 && month < 10)
- printf("%d-0%d-0%d\n", year, month, day);
- else if(day >= 10 && month < 10)
- printf("%d-0%d-%d\n", year, month, day);
- else if(day < 10 && month >= 10)
- printf("%d-%d-0%d\n", year, month, day);
- else if(day >= 10 && month >= 10)
- printf("%d-%d-%d\n", year, month, day);
-
- }
天梯图书阅览室请你编写一个简单的图书借阅统计程序。当读者借书时,管理员输入书号并按下S
键,程序开始计时;当读者还书时,管理员输入书号并按下E
键,程序结束计时。书号为不超过1000的正整数。当管理员将0作为书号输入时,表示一天工作结束,你的程序应输出当天的读者借书次数和平均阅读时间。
注意:由于线路偶尔会有故障,可能出现不完整的纪录,即只有S
没有E
,或者只有E
没有S
的纪录,系统应能自动忽略这种无效纪录。另外,题目保证书号是书的唯一标识,同一本书在任何时间区间内只可能被一位读者借阅。
输入在第一行给出一个正整数N(≤10),随后给出N天的纪录。每天的纪录由若干次借阅操作组成,每次操作占一行,格式为:
书号
([1, 1000]内的整数) 键值
(S
或E
) 发生时间
(hh:mm
,其中hh
是[0,23]内的整数,mm
是[0, 59]内整数)
每一天的纪录保证按时间递增的顺序给出。
对每天的纪录,在一行中输出当天的读者借书次数和平均阅读时间(以分钟为单位的精确到个位的整数时间)。
- 3
- 1 S 08:10
- 2 S 08:35
- 1 E 10:00
- 2 E 13:16
- 0 S 17:00
- 0 S 17:00
- 3 E 08:10
- 1 S 08:20
- 2 S 09:00
- 1 E 09:20
- 0 E 17:00
- 2 196
- 0 0
- 1 60
- #include <iostream>
- #include <stdio.h>
- #include <string.h>
- using namespace std;
- int main(){
- int n;
- cin >> n;
- for (int i = 0; i < n; i++) {
- int id = -1;
- double time = 0;
- int num = 0;
- int mintue[2001] = {0};
- bool flag[2001];
- memset(flag, false, sizeof(flag));
- while (id != 0) {
- char a;
- int h, m;
- scanf("%d %c %d:%d", &id, &a, &h, &m);
- if (id == 0) {
- break;
- } else if (a == 'S') {
- mintue[id] = h * 60 + m;
- flag[id] = true;
- } else if (a == 'E') {
- if (flag[id]) {
- flag[id] = false;
- time += h * 60 + m - mintue[id];
- mintue[id] = 0;
- num++;
- }
- }
- }
- int t;
- if (num != 0) {
- time /= num;
- }
- t = time + 0.5f;
- printf("%d %d\n", num, t);
- }
- }
大家应该都会玩“锤子剪刀布”的游戏:两人同时给出手势,胜负规则如图所示:
现要求你编写一个稳赢不输的程序,根据对方的出招,给出对应的赢招。但是!为了不让对方输得太惨,你需要每隔K次就让一个平局。
输入首先在第一行给出正整数K(≤10),即平局间隔的次数。随后每行给出对方的一次出招:ChuiZi
代表“锤子”、JianDao
代表“剪刀”、Bu
代表“布”。End
代表输入结束,这一行不要作为出招处理。
对每一个输入的出招,按要求输出稳赢或平局的招式。每招占一行。
- 2
- ChuiZi
- JianDao
- Bu
- JianDao
- Bu
- ChuiZi
- ChuiZi
- End
- Bu
- ChuiZi
- Bu
- ChuiZi
- JianDao
- ChuiZi
- Bu
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 10005
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- char game[MAX][10];
- int i = 0;
- while(1){
- cin >> game[i];
- if(game[i][0] == 'E')
- break;
- i++;
- }
- int num = 0;
- for(int j = 0; j < i; ++j){
- if(game[j][0] == 'C' && num != T){
- cout << "Bu" << endl;
- num++;
- }
- else if(game[j][0] == 'B' && num != T){
- cout << "JianDao" << endl;
- num++;
- }
- else if(game[j][0] == 'J' && num != T){
- cout << "ChuiZi" << endl;
- num++;
- }
- else if(num == T){
- cout << game[j] << endl;
- num = 0;
- }
- }
-
- }
据说所有程序员学习的第一个程序都是在屏幕上输出一句“Hello World”,跟这个世界打个招呼。作为天梯赛中的程序员,你写的程序得高级一点,要能跟任意指定的星球打招呼。
输入在第一行给出一个星球的名字S
,是一个由不超过7个英文字母组成的单词,以回车结束。
在一行中输出Hello S
,跟输入的S
星球打个招呼。
Mars
Hello Mars
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- string plant;
- getline(cin, plant);
- cout << "Hello ";
- for(int i = 0; i < plant.length(); ++i){
- cout << plant[i];
- }
- cout << endl;
- }
这里所谓的“光棍”,并不是指单身汪啦~ 说的是全部由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)。
在一行中输出相应的最小的s
和n
,其间以1个空格分隔。
31
3584229390681 15
- #include <iostream>
- #include <stdio.h>
- #include <string.h>
- using namespace std;
- int main(){
- int i,j,k,n,m;
- long long f1,f2,f3;
- cin >> f1;
- n=0;
- for(f2=1;f2<f1;f2=f2*10+1)
- n++;
- while(1){
- n++;
- if(f2%f1==0){
- cout << f2/f1;
- break;
- }else{
- cout << f2/f1;
- f2%=f1;
- f2=f2*10+1;
- }
- }
- cout << " " << n<<endl;
- return 0;
- }
你永远叫不醒一个装睡的人 —— 但是通过分析一个人的呼吸频率和脉搏,你可以发现谁在装睡!医生告诉我们,正常人睡眠时的呼吸频率是每分钟15-20次,脉搏是每分钟50-70次。下面给定一系列人的呼吸频率与脉搏,请你找出他们中间有可能在装睡的人,即至少一项指标不在正常范围内的人。
输入在第一行给出一个正整数N(≤10)。随后N行,每行给出一个人的名字(仅由英文字母组成的、长度不超过3个字符的串)、其呼吸频率和脉搏(均为不超过100的正整数)。
按照输入顺序检查每个人,如果其至少一项指标不在正常范围内,则输出其名字,每个名字占一行。
- 4
- Amy 15 70
- Tom 14 60
- Joe 18 50
- Zoe 21 71
- Tom
- Zoe
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 1005
- int main(int argc, char const *argv[])
- {
- int T;
- cin >> T;
- char name[MAX][5];
- int breath[MAX];
- int pulse[MAX];
- for(int i = 0; i < T; ++i){
- scanf("%s %d %d", &name[i], &breath[i], &pulse[i]);
- }
- for(int i = 0; i < T; ++i){
- if(breath[i] < 15 || breath[i] > 20 || pulse[i] < 50 || pulse[i] > 70)
- cout << name[i] << endl;
- }
-
-
- }
给定两个矩阵A和B,要求你计算它们的乘积矩阵AB。需要注意的是,只有规模匹配的矩阵才可以相乘。即若A有Ra行、Ca列,B有Rb行、Cb列,则只有Ca与Rb相等时,两个矩阵才能相乘。
输入先后给出两个矩阵A和B。对于每个矩阵,首先在一行中给出其行数R和列数C,随后R行,每行给出C个整数,以1个空格分隔,且行首尾没有多余的空格。输入保证两个矩阵的R和C都是正数,并且所有整数的绝对值不超过100。
若输入的两个矩阵的规模是匹配的,则按照输入的格式输出乘积矩阵AB,否则输出Error: Ca != Rb
,其中Ca
是A的列数,Rb
是B的行数。
- 2 3
- 1 2 3
- 4 5 6
- 3 4
- 7 8 9 0
- -1 -2 -3 -4
- 5 6 7 8
- 2 4
- 20 22 24 16
- 53 58 63 28
- 3 2
- 38 26
- 43 -5
- 0 17
- 3 2
- -11 57
- 99 68
- 81 72
Error: 2 != 3
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 105
- int main(int argc, char const *argv[])
- {
- int A[MAX][MAX];
- int B[MAX][MAX];
- int ans[MAX][MAX];
- memset(A, 0, sizeof(A));
- memset(B, 0, sizeof(B));
- memset(ans, 0, sizeof(ans));
- int a_line, a_row, b_line, b_row;
- cin >> a_line >> a_row;
- for(int i = 1; i <= a_line; ++i){
- for(int j = 1; j <= a_row; ++j){
- cin >> A[i][j];
- }
- }
- cin >> b_line >> b_row;
- for(int i = 1; i <= b_line; ++i){
- for(int j = 1; j <= b_row; ++j){
- cin >> B[i][j];
- }
- }
- if(a_row != b_line){
- printf("Error: %d != %d\n", a_row, b_line);
- }
- else{
- for(int i = 1; i <= a_line; ++i){
- for(int j = 1; j <= b_row; ++j){
- for(int k = 1; k <= a_row; ++k){
- ans[i][j] += A[i][k] * B[k][j];
- }
- }
- }
- cout << a_line << " " << b_row << endl;
- for(int i = 1; i <= a_line; ++i){
- for(int j = 1; j <= b_row; ++j){
- if(j != b_row)
- cout << ans[i][j] << " ";
- else
- cout << ans[i][j];
- }
- cout << endl;
- }
- }
-
- }
天梯赛每年有大量参赛队员,要保证同一所学校的所有队员都不能相邻,分配座位就成为一件比较麻烦的事情。为此我们制定如下策略:假设某赛场有 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 开始。
- 3
- 3 4 2
- #1
- 1 4 7 10 13 16 19 22 25 28
- 31 34 37 40 43 46 49 52 55 58
- 61 63 65 67 69 71 73 75 77 79
- #2
- 2 5 8 11 14 17 20 23 26 29
- 32 35 38 41 44 47 50 53 56 59
- 62 64 66 68 70 72 74 76 78 80
- 82 84 86 88 90 92 94 96 98 100
- #3
- 3 6 9 12 15 18 21 24 27 30
- 33 36 39 42 45 48 51 54 57 60
- #include<stdio.h>
- #include<iostream>
- #include<string.h>
- #include<algorithm>
- #include<math.h>
- #include<vector>
- using namespace std;
- int m[105];
- int f[105];///用于判断每队是否都已编号完毕
- int main()
- {
- int n, len = 0,sum = 0,len1 = 0;
- vector<int>A[105];
- cin>>n;
- for(int i = 0;i < n; i++)
- {
- cin >> m[i];
- m[i] = m[i]*10;///每队的人数
- sum += m[i];
- }
- memset(f,0,sizeof(f));
- for(int i = 1;;)
- {
- int t = 0;
- while(t < n)
- {
- if(A[t].size() < m[t])
- {
- len1++;
- A[t].push_back(i);
- if(len + 1 ==n)///如果只剩下一个队,编号要依次加2
- i += 2;
- else
- i += 1;
- }
- if(f[t] == 0 && A[t].size() >= m[t])
- {
- f[t] = 1;
- len++;
- }
- t++;
- }
- if(len1 == sum)
- break;
- }
- for(int i = 0;i < n; i++)
- {
- printf("#%d\n",i + 1);
- for(int j = 0; j < A[i].size(); j++)
- {
- if(j % 10 != 0)
- cout << " ";
- cout << A[i][j];
- if(j % 10 == 9)
- cout << endl;
- }
- if(A[i].size() % 10 != 0)
- cout << endl;
- }
- return 0;
- }
给定一个完全由小写英文字母组成的字符串等差递增序列,该序列中的每个字符串的长度固定为 L,从 L 个 a 开始,以 1 为步长递增。例如当 L 为 3 时,序列为 { aaa, aab, aac, ..., aaz, aba, abb, ..., abz, ..., zzz }。这个序列的倒数第27个字符串就是 zyz。对于任意给定的 L,本题要求你给出对应序列倒数第 N 个字符串。
输入在一行中给出两个正整数 L(2 ≤ L ≤ 6)和 N(≤105)。
在一行中输出对应序列倒数第 N 个字符串。题目保证这个字符串是存在的。
3 7417
pat
- #include<stdio.h>
- #include<algorithm>
- #include<memory.h>
- #include<string>
- #include<iostream>
- #include<set>
- using namespace std;
- int main(){
- int L, N, c;
- char s[7];
- memset(s, 0, sizeof(s));
- cin >> L >> N;
- c = L - 1;
- s[L] = '\0';
- N--;
- while(N || c >= 0)
- {
- s[c --] = 'z' - N % 26;
- N /= 26;
- }
- cout << s;
- }
去商场淘打折商品时,计算打折以后的价钱是件颇费脑子的事情。例如原价 ¥988,标明打 7 折,则折扣价应该是 ¥988 x 70% = ¥691.60。本题就请你写个程序替客户计算折扣价。
输入在一行中给出商品的原价(不超过1万元的正整数)和折扣(为[1, 9]区间内的整数),其间以空格分隔。
在一行中输出商品的折扣价,保留小数点后 2 位。
988 7
691.60
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 100005
- int main(int argc, char const *argv[])
- {
- int price;
- double discount;
- cin >> price >> discount;
- printf("%.2lf\n", price * discount * 0.1);
- }
2018年天梯赛的注册邀请码是“2018wmyy”,意思就是“2018我们要赢”。本题就请你用汉语拼音输出这句话。
本题没有输入。
在第一行中输出:“2018”;第二行中输出:“wo3 men2 yao4 ying2 !”。
无
- 2018
- wo3 men2 yao4 ying2 !
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 100005
- int main(int argc, char const *argv[])
- {
- cout << "2018" << endl;
- cout << "wo3 men2 yao4 ying2 !" << endl;
- }
据说汪星人的智商能达到人类 4 岁儿童的水平,更有些聪明汪会做加法计算。比如你在地上放两堆小球,分别有 1 只球和 2 只球,聪明汪就会用“汪!汪!汪!”表示 1 加 2 的结果是 3。
本题要求你为电子宠物汪做一个模拟程序,根据电子眼识别出的两堆小球的个数,计算出和,并且用汪星人的叫声给出答案。
输入在一行中给出两个 [1, 9] 区间内的正整数 A 和 B,用空格分隔。
在一行中输出 A + B 个Wang!
。
2 1
Wang!Wang!Wang!
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 100005
- int main(int argc, char const *argv[])
- {
- int a, b;
- cin >> a >> b;
- int ans = a + b;
- for(int i = 0; i < ans; ++i){
- printf("Wang!");
- }
- cout << endl;
- }
“福”字倒着贴,寓意“福到”。不论到底算不算民俗,本题且请你编写程序,把各种汉字倒过来输出。这里要处理的每个汉字是由一个 N × N 的网格组成的,网格中的元素或者为字符 @
或者为空格。而倒过来的汉字所用的字符由裁判指定。
输入在第一行中给出倒过来的汉字所用的字符、以及网格的规模 N (不超过100的正整数),其间以 1 个空格分隔;随后 N 行,每行给出 N 个字符,或者为 @
或者为空格。
输出倒置的网格,如样例所示。但是,如果这个字正过来倒过去是一样的,就先输出bu yong dao le
,然后再用输入指定的字符将其输出。
- $ 9
- @ @@@@@
- @@@ @@@
- @ @ @
- @@@ @@@
- @@@ @@@@@
- @@@ @ @ @
- @@@ @@@@@
- @ @ @ @
- @ @@@@@
- $$$$$ $
- $ $ $ $
- $$$$$ $$$
- $ $ $ $$$
- $$$$$ $$$
- $$$ $$$
- $ $ $
- $$$ $$$
- $$$$$ $
- & 3
- @@@
- @
- @@@
- bu yong dao le
- &&&
- &
- &&&
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 105
- int main(int argc, char const *argv[])
- {
- char ch;
- char mp[MAX][MAX], mp_t[MAX][MAX];
- memset(mp, 0, sizeof(mp));
- memset(mp_t, 0, sizeof(mp_t));
- int N;
- scanf("%c %d", &ch, &N);
- getchar();
- for(int i = 0; i < N; ++i){
- for(int j = 0; j < N; ++j){
- scanf("%c", &mp[i][j]);
- }
- getchar();
- }
- for(int i = N-1, k = 0; i >= 0; --i, ++k){
- for(int j = N-1, m = 0; j >= 0; --j, ++m){
- mp_t[k][m] = mp[i][j];
- }
- }
- int flag = 0;
- for(int i = 0; i < N; ++i){
- for(int j = 0; j < N; ++j){
- if(mp[i][j] != mp_t[i][j])
- {
- flag = 1;
- break;
- }
- }
- }
- if(flag == 1){
- for(int i = 0; i < N; ++i){
- for(int j = 0; j < N; ++j){
- if(mp_t[i][j] != ' ')
- mp_t[i][j] = ch;
- }
- }
- for(int i = 0; i < N; ++i){
- for(int j = 0; j < N; ++j){
- cout << mp_t[i][j];
- }
- cout << endl;
- }
- }
- else{
- cout << "bu yong dao le" << endl;
- for(int i = 0; i < N; ++i){
- for(int j = 0; j < N; ++j){
- if(mp_t[i][j] != ' ')
- mp_t[i][j] = ch;
- }
- }
- for(int i = 0; i < N; ++i){
- for(int j = 0; j < N ; ++j){
- cout << mp_t[i][j];
- }
- cout << endl;
- }
- }
- }
某电视台的娱乐节目有个表演评审环节,每次安排两位艺人表演,他们的胜负由观众投票和 3 名评委投票两部分共同决定。规则为:如果一位艺人的观众票数高,且得到至少 1 名评委的认可,该艺人就胜出;或艺人的观众票数低,但得到全部评委的认可,也可以胜出。节目保证投票的观众人数为奇数,所以不存在平票的情况。本题就请你用程序判断谁是赢家。
输入第一行给出 2 个不超过 1000 的正整数 Pa 和 Pb,分别是艺人 a 和艺人 b 得到的观众票数。题目保证这两个数字不相等。随后第二行给出 3 名评委的投票结果。数字 0 代表投票给 a,数字 1 代表投票给 b,其间以一个空格分隔。
按以下格式输出赢家:
The winner is x: P1 + P2
其中 x
是代表赢家的字母,P1
是赢家得到的观众票数,P2
是赢家得到的评委票数。
- 327 129
- 1 0 1
The winner is a: 327 + 1
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 105
- int main(int argc, char const *argv[])
- {
- int pic_1, pic_2;
- cin >> pic_1 >> pic_2;
- int re[MAX];
- for(int i = 0; i < 3; ++i){
- cin >> re[i];
- }
- int a = 0, b = 0;
- for(int i = 0; i < 3; ++i){
- if(re[i] == 0)
- a++;
- else if(re[i] == 1)
- b++;
- }
- if(pic_1 > pic_2 && a != 0)
- cout << "The winner is a: " << pic_1 << " + " << a << endl;
- else if (pic_1 < pic_2 && a == 3)
- cout << "The winner is a: " << pic_1 << " + " << a << endl;
- else if(pic_1 < pic_2 && b != 0)
- cout << "The winner is b: " << pic_2 << " + " << b << endl;
- else if (pic_1 > pic_2 && b == 3)
- cout << "The winner is b: " << pic_2 << " + " << b << endl;
-
-
-
- }
一群人坐在一起,每人猜一个 100 以内的数,谁的数字最接近大家平均数的一半就赢。本题就要求你找出其中的赢家。
输入在第一行给出一个正整数N(≤104)。随后 N 行,每行给出一个玩家的名字(由不超过8个英文字母组成的字符串)和其猜的正整数(≤ 100)。
在一行中顺序输出:大家平均数的一半(只输出整数部分)、赢家的名字,其间以空格分隔。题目保证赢家是唯一的。
- 7
- Bob 35
- Amy 28
- James 98
- Alice 11
- Jack 45
- Smith 33
- Chris 62
22 Amy
- #include<stdio.h>
- #include<string>
- #include<memory.h>
- #include<iostream>
- #include<algorithm>
- #include<math.h>
- using namespace std;
- #define MAX 10005
- int abs(int a, int b){
- if(a - b < 0)
- return b - a;
- else
- return a - b;
- }
- int main(int argc, char const *argv[])
- {
- char name[MAX][10];
- int num[MAX];
- memset(name, 0, sizeof(name));
- memset(num, 0, sizeof(num));
- int T;
- cin >> T;
- for(int i = 0; i < T; ++i){
- scanf("%s %d", &name[i], &num[i]);
- }
- double sum = 0;
- for(int i = 0; i < T; ++i){
- sum += num[i];
- }
- int avg;
- avg = sum / T / 2;
- for(int i = 0; i < T; ++i){
- num[i] = abs(num[i],avg);
- }
- int max = 101;
- int flag = 0;
- for(int i = 0; i < T; ++i){
- if(num[i] < max)
- {
- max = num[i];
- flag = i;
- }
- }
- cout << avg << " " << name[flag];
-
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。