https://www.acmicpc.net/problem/1010
import sys import math testCase = int(input()) for _ in range(testCase): r, n = map(int, sys.stdin.readline().split()) print(math.comb(n,r))
math.comb()를 이용해 조합으로 문제를 풀었습니다.