Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7674 刘逸杭 13猴子吃桃 C++ Accepted 0 MS 268 KB 174 2025-05-10 20:42:11

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,s=1; cin>>n; for(int i=2;i<=n;i++){ s=(1+s)*2; } cout<<s; return 0; }