| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152863 | 田子熙 | 直线分割圆 | C++ | Wrong Answer | 1 MS | 264 KB | 159 | 2026-05-03 19:20:50 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m=1,s=0; cin>>n; for(int i=0;i<=n;i++){ s+=m; m*=2; } cout<<s; return 0; }
------Input------
4
------Answer-----
11
------Your output-----
31