[Algorithm] 백준 11050번 이항 계수 1(파이썬)

고플래닛·2021년 7월 22일
0

Algorithm

목록 보기
26/40
post-thumbnail
post-custom-banner

백준 #11050

문제 바로가기


문제

입출력 규칙

1. 입력



2. 출력

문제접근

문제풀이(Python)

    
import sys
import math
n,k = map(int, sys.stdin.readline().split())
answer = math.factorial(n) // (math.factorial(k) * math.factorial(n-k))
print(answer)

profile
blog 이사했습니다. 주소 : https://goplanit.site/
post-custom-banner

0개의 댓글