| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78782 | sh25_zhangjiajia | 数字反转 | C++ | Accepted | 0 MS | 244 KB | 150 | 2025-12-27 21:23:14 |
#include <bits/stdc++.h> using namespace std; int n,s; int main(){ for(cin>>n;n!=0;n/=10){ s=s*10+n%10; } cout<<s<<endl; return 0; }