728x90
반응형
Bronze I
# 11050 이항 계수 1
링크 : https://www.acmicpc.net/problem/11050
풀이
import math
N, K = map(int, input().split())
print(math.factorial(N) // (math.factorial(K)*math.factorial(N-K)))
후기
- math 모듈을 사용해서 팩토리얼을 구현할 수 있다.
'Algorithm Study > Python' 카테고리의 다른 글
[백준 파이썬] # 1764 듣보잡 (0) | 2022.02.24 |
---|---|
[백준 파이썬] # 1676 팩토리얼 0의 개수 (0) | 2022.02.24 |
[백준 파이썬] #1193 분수찾기 (0) | 2022.02.24 |
[백준 파이썬] # 1654 랜선 자르기 (0) | 2022.02.23 |
[백준 파이썬] # 2805 나무 자르기 (0) | 2022.02.22 |