Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93331 | 陈铎文 | [在线测评解答教程] 求和 | C++ | Wrong Answer | 1 MS | 272 KB | 139 | 2024-10-13 11:59:21 |
#include<bits/stdc++.h> using namespace std; int s; int main(){ int a; cin>>a; for(int i=1;i<=a;i++){ s+=i; } cout<<s; }
------Input------
23 59
------Answer-----
276 1770
------Your output-----
276