| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 147417 | 黄本瀚 | 逆序数 | C++ | Output Limit Exceeded | 0 | 0 MS | 248 KB | 153 | 2024-05-18 15:07:42 |
#include<bits/stdc++.h> using namespace std; int fw(int x){ cout<<x%10; if(x!=0)fw(x); } int main(){ int n; cin>>n; fw(n); return 0; }