지나가던 개발자

[Python] 백준 11051번(이항 계수 2) 문제 풀이 본문

PS/Python

[Python] 백준 11051번(이항 계수 2) 문제 풀이

KwonYongHyeon 2022. 2. 17. 19:06

 

import math
n, k = list(map(int, input().split()))
print(int(math.comb(n, k)%10007))

 

 저번 11050번(이항 계수 1) 문제의 코드에서 약간만 수정했다.

Comments