Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4281 | 黄宜洋 | 13分苹果 | C++ | Wrong Answer | 0 MS | 260 KB | 182 | 2024-08-15 16:02:33 |
#include <list> #include <iostream> int main(){ int n,s; scanf("%d",&n); for(int i=1;i<=n;i++){ s+=i; } printf("%d",s); return 0; }
------Input------
51
------Answer-----
1326
------Your output-----
4196414