| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141144 | 何兴驰 | 回文数 | C++ | Wrong Answer | 0 MS | 276 KB | 267 | 2025-12-21 12:05:11 |
#include<bits/stdc++.h> using namespace std; int main(){ char q,w,e,r,t,z=0,n=0; cin>>q>>w>>e>>r>>t; cout<<t<<r<<e<<w<<q; z=q+w*10+e*100+r*1000+t*10000; n=t+r*10+e*100+w*1000+q*10000; if(z==n){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }
------Input------
4503
------Answer-----
NO
------Your output-----
.3054NO