Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
93601 | 张新福 | 13求n加到m的和 | C++ | Wrong Answer | 0 MS | 260 KB | 125 | 2024-10-18 14:04:45 |
#include <iostream> using namespace std; int main(){ int i,x=0; for(i=1;i<=5;i++){ x+=i*i; } cout<<x<<endl; }
------Input------
5 13
------Answer-----
81
------Your output-----
55