| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3957 | C班-吴浩轩 | 请输出n~1之间所有的整数 | C++ | Accepted | 100 | 1 MS | 256 KB | 135 | 2025-01-04 16:03:41 |
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(n;n>=1;n--){ cout<<n<<endl; } return 0; }