| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 78363 | sh25_lvyn | 回文数 | C++ | 解答错误 | 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; }