Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7665 余立涵 13猴子吃桃 C++ Accepted 0 MS 260 KB 225 2025-05-10 20:29:08

Tests(10/10):


Code:

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