Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150693 刘卫东 13分苹果 C++ Accepted 1 MS 272 KB 137 2026-03-30 16:36:43

Tests(10/10):


Code:

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