比赛 | EYOI与SBOI开学欢乐赛10th | 评测结果 | AWWAAWAAWW |
---|---|---|---|
题目名称 | 捡字母 | 最终得分 | 50 |
用户昵称 | ZRQ | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2022-10-10 21:52:22 | ||
#include<iostream> #include<cstdio> using namespace std; const int N=10005; string s; int main() { freopen("PickLetter.in","r",stdin); freopen("PickLetter.out","w",stdout); cin>>s; int k=s.size()>>1; for(int i=0;i<=k;++i) if(s[k-i]!=s[k+1+i]) { printf("lhzwin!\n"); return 0; } printf("draw\n"); return 0; }