Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
116692 | 陈家宝 | 爬楼梯 | C++ | 通过 | 100 | 0 MS | 256 KB | 271 | 2023-12-18 13:23:25 |
#include<bits/stdc++.h> using namespace std; int f[1111],c[1111],w[1111],n,m; int main() { cin>>m>>n; f[0]=1; for(int i=1;i<=m;i++){ for(int j=1;j<=n;j++){ if(i>=j) f[i]+=f[i-j]; } } cout<<f[m]; return 0; }