比赛 |
20121107 |
评测结果 |
AWWWW |
题目名称 |
三只小猪 |
最终得分 |
20 |
用户昵称 |
TA |
运行时间 |
0.001 s |
代码语言 |
C++ |
内存使用 |
0.33 MiB |
提交时间 |
2014-09-20 21:58:14 |
显示代码纯文本
#include<iostream>
using namespace std;
#include<cstring>
#include<cmath>
#include<cstdio>
#include<algorithm>
unsigned long long f[51][51];
main(){
freopen("piggy.in","r",stdin);freopen("piggy.out","w",stdout);
short T,n,m,i,j,t=-1;
scanf("%hd",&T);
f[0][0]=1;
for(i=0;++i<51;)
for(j=0;++j<=i;)
f[i][j]=f[i-1][j-1]+j*f[i-1][j];
while(++t<T){
scanf("%hd%hd",&n,&m);
cout<<f[n][m];
}
}