| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3961 | C班-陈骏阳 | 请输出n~1之间所有的整数 | C++ | Accepted | 100 | 1 MS | 260 KB | 146 | 2025-01-04 16:18:43 |
#include <bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; for(int i=1;i<=a;a--){ cout<<a<<endl; } return 0; }