Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
111825 万隽宇 青蛙跳台阶 C++ Accepted 1 MS 272 KB 470 2025-03-06 19:16:47

Tests(10/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[51]={0,1,2,4}; long long n; cin>>n; for(int i=4;i<51;i++){ for(int j=1;j<i;j++){ a[i]+=a[i-j]; } a[i]+=1; } cout<<a[n]; return 0; }