博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【水题】SDUT3035-你猜我猜不猜你猜不猜
阅读量:5313 次
发布时间:2019-06-14

本文共 2322 字,大约阅读时间需要 7 分钟。

你猜我猜不猜你猜不猜 

Time Limit: 2000MS Memory limit: 65536K

题目描述

In the past 39th annual ACM international collegiate programming contest in Beijing station in Asia that Triple_S sent by our school team won the SDUT in Reginal bronze 11. At the same time,the team’s name is cray which is to let the host after reading the wrong three times, still missed a word to read. But  zhuhu gave a high evaluation to the team.
 
As the creator of this team, I want to say is,  in fact I was reminded of a game which is named ”ni cai wo cai bu cai ni cai bu cai wo cai bu cai”, may be the teacher didn\'t remember it. The name is just due to a conversation with a girl, so the origin is simple.
 
A:Why are you so diao?
 
B:Ni cai.
 
A:Ni cai wo cai bu cai.
 
B:Ni cai wo cai bu cai ni cai bu cai.
 
A:Ni cai wo cai bu cai ni cai bu cai wo cai bu cai.
 
Then do you know the content of their first conversation X?OK,in order to avoid the mle , RE professionals will popularize related knowledge for you . Please seize this chance!
 
The operation is very simple, only need to output the first letter of each word .For example , You can substitute N for Ni . Next, I\'ll demonstrate specific operation steps

输入

 For everytestcase, each line of input a Character , said A or B.

Then enter an Integer X (0<=X<=10^5), said the figure’s the first  X words.

输出

 Output the words.

 

示例输入

A 2A 3B 3

示例输出

NcwcbcNcwcbcncbcwcbcNcwcbcncbcwcbcncbc
1 #include
2 #include
3 int main() 4 { 5 char ch[100]; 6 int n; 7 while(~scanf("%s %d", &ch, &n)) 8 { 9 if(strcmp(ch, "A")==0) 10 { 11 if(n==1) 12 { 13 printf("Waysd\n"); 14 } 15 else 16 { 17 printf("Nc"); 18 while(n-2) 19 { 20 printf("wcbcncbc"); 21 n--; 22 } 23 printf("wcbc\n"); 24 } 25 } 26 else 27 { 28 printf("Nc"); 29 while(n-1) 30 { 31 printf("wcbcncbc"); 32 n--; 33 } 34 printf("\n"); 35 } 36 } 37 return 0; 38 }

 

转载于:https://www.cnblogs.com/6bing/p/4133565.html

你可能感兴趣的文章
vue.js基础
查看>>
电脑的自带图标的显示
查看>>
[转载] redis 的两种持久化方式及原理
查看>>
C++ 删除字符串的两种实现方式
查看>>
ORA-01502: 索引'P_ABCD.PK_WEB_BASE'或这类索引的分区处于不可用状态
查看>>
Java抽象类和接口的比较
查看>>
开发进度一
查看>>
MyBaits学习
查看>>
管道,数据共享,进程池
查看>>
CSS
查看>>
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
程序集的混淆及签名
查看>>
判断9X9数组是否是数独的java代码
查看>>
00-自测1. 打印沙漏
查看>>
UNITY在VS中调试
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>
Scala入门(1)Linux下Scala(2.12.1)安装
查看>>
如何改善下面的代码 领导说了很耗资源
查看>>
Quartus II 中常见Warning 原因及解决方法
查看>>