| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78363 | sh25_lvyn | 回文数 | C++ | Wrong Answer | 0 MS | 256 KB | 222 | 2025-12-26 15:41:38 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int n1=n; int sum=0; while(n){ sum=sum*10+n%10; sum++; n/=10; } if(sum==n) cout<<"yes"; else cout<<"no"; return 0; }