Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7666 邓小龙 13猴子吃桃 C++ Accepted 0 MS 256 KB 180 2025-05-10 20:29:19

Tests(10/10):


Code:

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