Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2233 | 孙浚轩 | [在线测评解答教程] 求和 | C++ | Output Limit Exceeded | 1 MS | 252 KB | 146 | 2023-12-22 22:42:36 |
#include<iostream> using namespace std; int main() { int n; while(n!=EOF) { cin>>n; cout<<(1+n)*n/2<<endl; } }