| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 353769 | 胡珂 | 【C2-1】循环输出1~100之间的每个数 | C++ | Accepted | 100 | 10 MS | 236 KB | 123 | 2025-10-01 12:25:24 |
#include <bits/stdc++.h> using namespace std; int main(){ for(int i=1;i<=100;i++){ cout<<i<<endl; } return 0; }