[백준] 11050번: 이항 계수 1 (Python)

BellBoy·2023년 5월 17일
0

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

import sys
from collections import deque

import math

input = sys.stdin.readline

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


result = math.factorial(N) // (math.factorial(K)*math.factorial(N-K))

print(result)

팩토리얼을 구현할까 했지만 간단하게 함수로 이용해서 이항계수를 구하는 n! // k!(n-k)! 공식을 이용해서 풀었습니다

profile
리액트러버

0개의 댓글