#include <iostream>using namespace std;int bin_coef_DC(int n, int k);int main(){int n, k;cin >> n >> k;cout << bin_coef_DC(n, k) << endl;return 0;}int bin_coef_DC(int n, int k){if (k == 0 || k == n)return 1;elsereturn bin_coef_DC(n - 1, k - 1) + bin_coef_DC(n - 1, k);}
'백준' 카테고리의 다른 글
[10872] 팩토리얼 (0) | 2018.07.23 |
---|---|
[11051] 이항 계수 2 (0) | 2018.07.23 |
[1003] 피보나치 함수 (0) | 2018.07.23 |
[2749] 피보나치 수 3 (0) | 2018.07.23 |
[2748] 피보나치 수 2 (0) | 2018.07.23 |