Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
169772 | 陈道宁 | 组合数的高精度算法 | C++ | 解答错误 | 0 | 1986 MS | 3356 KB | 223 | 2024-08-20 17:02:57 |
#include<bits/stdc++.h> using namespace std; int dfs(int n,int m){ if(n==1){ return m-1; } if(m==1){ return n-1; } return dfs(n-1,m)+dfs(n,m-1); } int main(){ int n,m; cin>>n>>m; cout<<dfs(n,m); }