Home [Python] 백준 11050번 : 이항 계수 1
Post
Cancel

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

Problem

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

Solution

math 모듈을 import 해서 해결했다.

code

1
2
3
4
5
6
7
8
import math

a = list(map(int,input().split()))
n = a[0]
k = a[1]

cal = math.factorial(n)/(math.factorial(n-k)*math.factorial(k))
print(int(cal))
This post is licensed under CC BY 4.0 by the author.

[Python] 백준 10952번 : A+B - 5

[Python] 백준 1110번 : 더하기 사이클