| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 32373 | 王籽易 | 回文数判断 | C++ | Accepted | 100 | 0 MS | 252 KB | 194 | 2022-02-10 16:50:01 |
#include<bits/stdc++.h> using namespace std; int m,t; int n; int main(){ cin>>m; n=m; while(m){ t=t*10+m%10; m/=10; } if(t==n) cout<<"Yes"; else cout<<"No"; return 0; }