Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
5787 | 刘芃伽 | 13猴子吃桃 | C++ | Wrong Answer | 0 MS | 248 KB | 141 | 2024-12-14 20:26:25 |
#include<iostream> using namespace std; int main() { int x=1; for(int i=2;i<=10;i++){x=(x+1)*2;}cout<<x<<endl; return 0; }
------Input------
11
------Answer-----
3070
------Your output-----
1534