| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83806 | sh25_huangse | 倒序输出 | C++ | Accepted | 0 MS | 248 KB | 212 | 2026-02-02 17:59:12 |
#include<iostream> using namespace std; int main(){ int h; cin>>h; int s[h]; for(int i=0;i<h;++i) cin>>s[i]; for(int i=h-1;i>=0;--i) cout<<s[i]<<" "; return 0; }