| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 43027 | yuzhengxun | 求和 | C++ | Wrong Answer | 0 MS | 240 KB | 142 | 2024-03-05 21:21:26 |
#include<iostream> using namespace std; int main() { int n,s=0; cin>>n; for(int i=1;i<=n;i++){ s+=n; } cout<<s; return 0; }