JiSoo's Devlog

[백준 / 파이썬] 11050번 이항계수1 본문

코테준비

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

지숭숭숭 2024. 1. 9. 11:45

import math

n, k = map(int, input().split())

print(math.factorial(n) // (math.factorial(k) * math.factorial(n-k)))

 

이항계수 공식

math.factorial 함수 사용

 

728x90