반응형
문제
https://www.acmicpc.net/problem/1010
코드
import math
t = int(input())
for i in range(t):
r, n = map(int,input().split())
print(math.factorial(n) // (math.factorial(r) * math.factorial(n - r)))
설명
경우의 수를 구하는 문제이다.
https://namu.wiki/w/%EA%B2%BD%EC%9A%B0%EC%9D%98%20%EC%88%98
math 모듈을 사용하여 factorial을 계산하였다.
반응형
'개발 연습장 > 백준 문제풀이' 카테고리의 다른 글
[파이썬, Python] 백준 1927: 최소 힙 (0) | 2023.04.06 |
---|---|
[파이썬, Python] 백준 1026: 보물 (0) | 2023.04.05 |
[파이썬, Python] 백준 25314: 코딩은 체육과목 입니다 (0) | 2023.04.03 |
[파이썬, Python] 백준 11382: 꼬마 정민 (0) | 2023.03.31 |
[파이썬, Python] 백준 14425: 문자열 집합 (0) | 2023.03.30 |