Algorithm Study/Python

[백준 파이썬] # 11050 이항 계수 1

728x90
반응형

Bronze I

# 11050 이항 계수 1

링크 : https://www.acmicpc.net/problem/11050

 

11050번: 이항 계수 1

첫째 줄에 \(N\)과 \(K\)가 주어진다. (1 ≤ \(N\) ≤ 10, 0 ≤ \(K\) ≤ \(N\))

www.acmicpc.net

 

풀이

import math

N, K = map(int, input().split())

print(math.factorial(N) // (math.factorial(K)*math.factorial(N-K)))

 

후기

  • math 모듈을 사용해서 팩토리얼을 구현할 수 있다.