Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100654 adar 剪绳子 C++ Accepted 1 MS 280 KB 125 2024-12-09 20:10:53

Tests(4/4):


Code:

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