combination 계산 방식을 구현해주었다.
a, b = map(int, input().split())
s = 1
for i in range(1,b+1):
s *= a
s /= i
a-=1
print(int(s))
'백준' 카테고리의 다른 글
N과 M (1) - 15649 번 (0) | 2022.10.02 |
---|---|
ACM 호텔 - 10250 번 (0) | 2022.10.01 |
분해합 - 2231번 (0) | 2022.09.30 |
팰린드롬수 - 1259번 (0) | 2022.09.30 |
RGB거리 2 - 17404번 (0) | 2022.09.29 |
댓글