haju__log
[python][백준/BOJ] 2407번 : 조합 본문
https://www.acmicpc.net/problem/2407
2407번: 조합
n과 m이 주어진다. (5 ≤ n ≤ 100, 5 ≤ m ≤ 100, m ≤ n)
www.acmicpc.net
✅ 문제풀이
- 조합의 식은 아래와 같다.
- 팩토리얼을 이용하기 위해 math 라이브러리를 import 해주고 math.factorial 함수를 사용하였다.
import sys
import math
n,m=map(int,sys.stdin.readline().split())
nf=math.factorial(n)
mf=math.factorial(m)
n_mf=math.factorial(n-m)
print(nf//(mf*n_mf))
'BOJ_백준' 카테고리의 다른 글
[python][백준/BOJ] 1110번 : 더하기 사이클 (0) | 2023.08.19 |
---|---|
[python][백준/BOJ] 2161번 : 카드1 (0) | 2023.08.19 |
[python][백준/BOJ] 3049번 : 다각형의 대각선 (0) | 2023.08.14 |
[python][백준/BOJ] 13277번 : 큰 수 곱셈 (0) | 2023.08.12 |
[python][백준/BOJ] 14652번 : 나는 행복합니다~ (0) | 2023.08.12 |