https://www.acmicpc.net/problem/1010
# 백준 1010 다리놓기
import math
t = int(input())
for _ in range(t):
n, m = map(int, input().split())
# 오른쪽 m개 중에서 n개 고르기
bridge = math.comb(m, n)
print(bridge)
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 파이썬 1676 팩토리얼 0의 개수 (0) | 2022.10.17 |
---|---|
[Python] 백준 파이썬 9375 패션왕 신해빈 (0) | 2022.10.15 |
[Python] 백준 파이썬 11051 이항 계수 2 (0) | 2022.10.13 |
[Python] 백준 파이썬 11050 이항 계수 1 (0) | 2022.10.12 |
[Python] 백준 파이썬 3036 링 (0) | 2022.10.11 |