08 2018 档案
摘要:题目内容:http://codeforces.com/contest/1027/problem/A 题目解析:输入T组字符串,每个字符串都必须改变一次,每个字母改变的规则是变成相邻的字母,字母a只能变b,z只能变y。改变后 的字符依旧是否能够变成回文串,就输出YES,否则就输出NO。注意,相邻的字母
阅读全文
摘要:题目出处:http://codeforces.com/contest/1013/problem/A 题目出处:http://codeforces.com/contest/1013/problem/A #include<iostream> using namespace std; int main()
阅读全文
摘要:题目出处:http://codeforces.com/contest/1016/problem/D #include<iostream> #define ll long long int #define inf 0x3f3f3f3f #define N 1005 using namespace st
阅读全文
摘要:题目出处:http://codeforces.com/problemset/problem/1017/A 题目出处:http://codeforces.com/problemset/problem/1017/A #include<iostream> using namespace std; int
阅读全文