Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
9728 | 杨晓铮 | 判断字符串是否是回文串 | C++ | 通过 | 100 | 0 MS | 304 KB | 341 | 2020-11-18 18:51:32 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,ans[10000]={0},fu1,fu2; char fu[10000]; cin>>n; while(n--){ fu2++; cin>>fu; fu1=strlen(fu); for(int j=0;j<=fu1/2;j++){ if(fu[j]!=fu[fu1-j-1]){ ans[fu2]=1; break; } } if(ans[fu2]==1)cout<<"No"<<endl; else cout<<"Yes"<<endl; } }