Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109267 | 陈铎文 | 回文字符串I | C++ | Wrong Answer | 0 MS | 272 KB | 296 | 2025-02-08 08:46:12 |
#include<bits/stdc++.h> using namespace std; int main(){ char ch[1001]; bool t=true; int n=0; cin>>ch; while(ch[n]=='\0'){ n++; } for(int i=0;i<=n/2;i++){ if(ch[i]!=ch[n-1-i]){ t=false; break; } } if(t==true){ cout<<"Yes"; } else{ cout<<"No"; } }
------Input------
ltpffytlohuaoofsqawhbfrvtppczdnumeicqcsvfgjvydqhhuuhhqdyvjgfvscqciemundzcpptvrfbhwaqsfooauholtyffptl
------Answer-----
Yes
------Your output-----
No