记录编号 | 49656 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | K 上升段 | 最终得分 | 100 | ||
用户昵称 | 11111111 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.007 s | ||
提交时间 | 2012-11-08 19:28:29 | 内存使用 | 3.17 MiB | ||
#include<iostream> #include<fstream> using namespace std; long long f[51][51]={0},n,m; int main() { ifstream fin("k.in"); ofstream fout("k.out"); fin>>n>>m; f[1][1]=1; for (int i=2;i<=n;i++) for (int j=1;j<=m;j++) f[i][j]=f[i-1][j]*j+f[i-1][j-1]*(i-j+1); fout<<f[n][m]; fin.close(); fout.close(); return 0; }