Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156197 任艺宸 青蛙跳台阶 C++ Runtime Error 0 MS 268 KB 385 2026-06-27 09:39:37

Tests(1/10):


Code:

#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[i-1]; }cout<<a[n]; return 0; }


Run Info:

*** stack smashing detected ***: ./Main terminated