放苹果
放苹果
Time Limit : 2000/1000ms (Java/Other) Memory Limit : 20000/10000K (Java/Other)
Total Submission(s) : 19 Accepted Submission(s) : 14
1 #include <stdio.h> 2 int C(int M,int N) 3 { 4 if(M==0||N==1) 5 return 1; 6 if(M<0) 7 return 0; 8 return C(M-N,N)+C(M,N-1); 9 } 10 11 int main() 12 { 13 int T,M,N; 14 scanf("%d",&T); 15 while(T--) 16 { 17 scanf("%d %d",&M,&N); 18 printf("%d\n",C(M,N)); 19 } 20 return 0; 21 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。