Algorithm
BOJ 11050 c++ 이항계수(1)
BOJ 11050 c++ 이항계수(1) 백준 11050번 c++ 이항계수(1) #include 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
2020. 7. 17. 18:58
최근댓글