| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149121 | 王峻熙 | 13分苹果 | C++ | Wrong Answer | 0 MS | 268 KB | 175 | 2026-03-07 14:57:21 |
#include<iostream> using namespace std; int main(){ int n,s=0; cin>>n; for(int i=1;i<=n;i++){ s=s+n; } cout<<s<<endl; return 0; }
------Input------
55
------Answer-----
1540
------Your output-----
3025