Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150430 任艺宸 31回文字符串 C++ Wrong Answer 1 MS 276 KB 244 2026-03-28 10:34:16

Tests(3/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { string s; getline(cin,s); int len=s.size(); bool fiag=true; for(int i=0;i<len;i++){ if(s[i]!=s[len-i-1]){ cout<<"No"; break; } } cout<<"Yes"; return 0; }


Run Info:

------Input------
ryajncnycmxwvcevkhjthqisteeynuihofasfnizppacecxtmocfoaxihatpizntytqhgbhunmrkdmfyryhexnvxfjglomudkjuh
------Answer-----
No
------Your output-----
NoYes