Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150707 刘浩宇 13分苹果 C++ Accepted 1 MS 272 KB 167 2026-03-30 16:48:48

Tests(10/10):


Code:

#include <iostream> using namespace std; int main(){ int a=0; int b; cin>>b; for(int x=1;x<=b;x++){ a=a+x; } cout<<a; }