728x90
BOJ 11050 이항 계수 1
문제
입력
첫째 줄에 N과 K가 주어진다. (1 ≤ N ≤ 10, 0 ≤ K ≤ N)
출력
예제 입력 1
5 2
예제 출력 1
10
풀이
# boj 11050 이항 계수 1
import math
n, k = list(map(int, input().split()))
res = 1
for i in range(k) :
res *= n-i
res = res // math.factorial(k)
print(res)
728x90
'Algorithm(Python) > 수학' 카테고리의 다른 글
[Algorithm] 백준 BOJ 1037 약수(python 파이썬) (0) | 2023.03.01 |
---|---|
[Algorithm] 백준 BOJ 9020 골드바흐의 추측(python 파이썬) (0) | 2023.02.28 |
[Algorithm] 백준 BOJ 25304 영수증(python 파이썬) (0) | 2023.02.26 |
[Algorithm] 백준 BOJ 1934 최소공배수(python 파이썬) (0) | 2023.02.25 |
[Algorithm] 백준 BOJ 1002 터렛(python 파이썬) (0) | 2023.02.22 |