https://www.acmicpc.net/problem/11050
# 백준 11050 이항 계수 1
import math
n, k = map(int, input().split())
print(math.comb(n,k))
python에는 math.comb() 라는 아주 좋은 함수가 있습니다. 😀
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 파이썬 1010 다리 놓기 (1) | 2022.10.14 |
---|---|
[Python] 백준 파이썬 11051 이항 계수 2 (0) | 2022.10.13 |
[Python] 백준 파이썬 3036 링 (0) | 2022.10.11 |
[Python] 백준 파이썬 2981 검문 (0) | 2022.10.10 |
[Python] 백준 파이썬 1037 약수 (0) | 2022.10.09 |