博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(HDU)1048 --The Hardest Problem Ever( 最难的问题)
阅读量:5335 次
发布时间:2019-06-15

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

题目链:http://vjudge.net/problem/HDU-1048

其实就是一个密码变成明文的过程,找出规律就可以了。

1     #include 
2 #include
3 #include
4 using namespace std; 5 6 int main() 7 { 8 char text[10000]; 9 while(gets(text))10 {11 if (!strcmp(text, "START"))12 {13 gets(text);14 int len=strlen(text),i;15 for(i=0;i<=len;i++)16 {17 if(text[i]>='F'&&text[i]<='Z')18 text[i] = text[i] - 5;19 else if(text[i]>='A'&&text[i]<='E')20 text[i] = text[i] + 21;21 }22 puts(text);23 }24 gets(text);25 if (!strcmp(text, "END"))26 continue;27 else if (!strcmp(text, "ENDOFINPUT"));28 break;29 }30 return 0;31 }
View Code

 

转载于:https://www.cnblogs.com/ACDoge/p/6130230.html

你可能感兴趣的文章
AtCoder Beginner Contest 133 F Colorful Tree
查看>>
算法笔记--BSGS && exBSGS 模板
查看>>
P5043 【模板】树同构([BJOI2015]树的同构)
查看>>
Codeforces 348 D - Turtles
查看>>
bzoj 2321 星器
查看>>
HDU 6568 Math
查看>>
BZOJ 4488: [Jsoi2015]最大公约数
查看>>
算法笔记--笛卡尔树模板
查看>>
2018年长沙理工大学第十三届程序设计竞赛 I 连续区间的最大公约数
查看>>
AcWing 246. 区间最大公约数
查看>>
算法笔记--线性基求交模板
查看>>
BZOJ 2154: Crash的数字表格
查看>>
The 2019 Asia Nanchang First Round Online Programming Contest The Nth Item
查看>>
BZOJ1413 [ZJOI2009]取石子游戏
查看>>
「模拟8.21」虎
查看>>
「模拟8.23」阴阳 DP
查看>>
「模拟8.21」山洞(矩阵优化DP)
查看>>
「模拟8.29」chinese(性质)·physics·chemistry(概率期望)
查看>>
「csp-s模拟测试(9.18)」Set·Read·Race
查看>>
csp-s模拟测试「9.14」A·B·C(三分,贪心)
查看>>