提交时间:2023-12-09 09:27:29

运行 ID: 114788

#include<bits/stdc++.h> using namespace std; int f[1111],c[1111],w[1111]; int 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]; }