Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
104292 | 谢佳辰 | 13求1╳2+2╳3+3╳4+...+10╳11的和 | C++ | Wrong Answer | 0 MS | 260 KB | 150 | 2025-01-04 18:22:55 |
#include <iostream> using namespace std; int main(){ int m,n,o=0; for(n=1;n<=11;n++){ o+=n*(n+1); } cout<<o<<endl; }
------Input------
0
------Answer-----
440
------Your output-----
572