[백준/파이썬] 1010번

민정·2023년 3월 5일
0

[백준/파이썬]

목록 보기
114/245
post-thumbnail

백준 1010번

문제

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()를 이용해 조합으로 문제를 풀었습니다.

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글