호기심 많은 분석가
[백준 11050] 이항 계수 1 (Python) 본문
크게 어려운 문제는 아니었지만 독특했다. math의 comb라는 combination 개수를 뽑아주는 함수가 있는데, 그 함수를 사용하면 런타임 에러가 발생한다. 그래서 간단하게 factorial로 구현해줬다.
import math
import sys
n, k = map(int, sys.stdin.readline().split())
ans = math.factorial(n)/(math.factorial(k)*math.factorial(n-k))
print(ans)
'Coding > Coding Test & Algorithm' 카테고리의 다른 글
[백준 1181] 단어 정렬 (Python) (0) | 2021.06.02 |
---|---|
[백준 1018] 체스판 다시 칠하기 (Python (0) | 2021.06.02 |
[백준 9625] BABBA (Python) (0) | 2021.05.27 |
[Python] 입력 받기 (sys.stdin.readline) (7) | 2021.05.27 |
[백준 10951] A+B - 4 (Python) (0) | 2021.05.25 |