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