| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 39060 | fuhaoze | 数字反转 | C++ | Time Limit Exceeded | 1000 MS | 244 KB | 140 | 2024-01-30 15:33:39 |
#include<iostream> using namespace std; int main(){ int n,s=0; cin>>n; while(n){ s+=s*10+s%10; } cout<<s; return 0; }