| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153901 | 李懋 | 12for循环练习III | C++ | Output Limit Exceeded | 0 MS | 256 KB | 163 | 2026-05-24 11:05:36 |
#include<bits/stdc++.h> using namespace std; int main() { int i; for(i = 1; i <= 1000; i++){ cout << i << " "; // } return 0; }