记录编号 | 49144 | 评测结果 | AWWWW | ||
---|---|---|---|---|---|
题目名称 | 三只小猪 | 最终得分 | 20 | ||
用户昵称 | skyfisherman | 是否通过 | 未通过 | ||
代码语言 | C++ | 运行时间 | 0.001 s | ||
提交时间 | 2012-11-07 13:13:23 | 内存使用 | 3.17 MiB | ||
#include <iostream> #include <cstdio> using namespace std; long long f[51][51]; int n,a,b; int main() { freopen("piggy.in","r",stdin); freopen("piggy.out","w",stdout); f[0][0]=1; for(int i=1;i<=50;i++) for(int j=1;j<=50;j++) f[i][j]=f[i-1][j-1]+f[i-1][j]*j; scanf("%d",&n); while(n--){ scanf("%d%d",&a,&b); printf("%lld\n",f[a][b]); } }