Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
3477 | liumingxuan | 剪绳子 | C++ | 通过 | 0 MS | 248 KB | 325 | 2023-01-08 14:29:26 |
#include<bits/stdc++.h> using namespace std; int po(int a,int b){ long long ans=1; while(b){ if(b%2)ans*=a; a*=a; b/=2; } return ans; } int main(){ int n; cin>>n; cout<<po(2,n)+1; return 0; } /* #include<cstdio> freopen("文件名.in","r",stdin); freopen("文件名.out","w",stdout); */