| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152753 | 陈华仁星 | 折线分割圆 | C++ | Wrong Answer | 1 MS | 272 KB | 171 | 2026-05-02 10:15:49 |
#include <iostream> using namespace std; int main() { int n,cnt=0; cin >> n; for(int i=1;i<=n;i++) { cnt+=i*2+1; } cout << cnt; return 0; }
------Input------
4
------Answer-----
33
------Your output-----
24