| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 156196 | 任艺宸 | 青蛙跳台阶 | C++ | Wrong Answer | 1 MS | 272 KB | 385 | 2026-06-27 09:39:07 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ long long a[41]={0,1,2,4},n; cin>>n; for(int i=4;i<=n;i++){ a[i]=2*a[n-1]; }cout<<a[n]; return 0; }
------Input------
40
------Answer-----
549755813888
------Your output-----
0