| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3967 | C班-何皓弦 | 编程求解1+2+3+...+n | C++ | Wrong Answer | 0 | 3 MS | 264 KB | 149 | 2025-01-04 16:26:55 |
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i+=1){ cout<<i<<endl; } return 0; }