Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
104985 方文轩 放苹果 C++ 通过 100 0 MS 192 KB 404 2023-10-04 20:59:31

Tests(5/5):


#include<stdlib.h> #include<stdio.h> int c; void count(int m,int n,int start) { int i,j; if(n==1) c++; else if(m<n) count(m,m,0); else { for(i=start;i<=m/n;i++) { count(m-i,n-1,i); } } } int main() { int t,m,n; scanf("%d",&t); while(t) { c=0; scanf("%d %d",&m,&n); count(m,n,0); printf("%d\n",c); t--; } return 0; }


测评信息: