| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150847 | 吴天辰 | 13求1╳2+2╳3+3╳4+...+10╳11的和 | C++ | Accepted | 1 MS | 256 KB | 149 | 2026-04-01 14:58:33 |
#include<bits/stdc++.h> using namespace std; int main(){ int a=1,b=0,c=0; for(int i=1;i<=10;i++){ b=b+i*(i+1); } cout<<b; return 0; }