BOJ 11050 c++ 이항계수(1)
백준 11050번 c++ 이항계수(1)
#include <bits/stdc++.h>
using namespace std;
int n, k;
int fac(int n) {
int ret = 1;
while (n) {
ret *= n--;
}
return ret;
}
int main () {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k;
cout << fac(n) / (fac(k) * fac(n - k));
return 0;
}
분류 : 수학
'Algorithm' 카테고리의 다른 글
BOJ 2501 c++ (0) | 2020.07.17 |
---|---|
BOJ 11051 c++ (0) | 2020.07.17 |
BOJ 1931 c++ (0) | 2020.07.16 |
BOJ 11047 c++ (0) | 2020.07.16 |
BOJ 1912 c++ (0) | 2020.07.16 |
최근댓글