| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149680 | 张咏灏 | [在线测评解答教程] 求和 | C++ | Wrong Answer | 1 MS | 268 KB | 164 | 2026-03-15 18:38:44 |
#include<iostream> using namespace std; int main(){ int a,b=0; cin>>a; for(int i=1;i<=a;i++){ b+=i; } cout<<b; return 0; }
------Input------
23 59
------Answer-----
276 1770
------Your output-----
276