| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3956 | C班-何皓弦 | 编程求1+3+5+...+n | C++ | Output Limit Exceeded | 0 | 10 MS | 264 KB | 147 | 2025-01-04 16:03:22 |
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=n;i<=2500;i++){ cout<<i<<endl; } return 0; }