할껀하고놀자

[백준] 1010번 다리놓기 본문

[IT]/백준

[백준] 1010번 다리놓기

working_hard 2019. 9. 28. 22:34
728x90

- 파이썬의 factorial library 를 쓰면 빠르게 풀 수 있다.

import math,sys
sys.stdin = open('1.txt')


k = int(input())
for i in range(k):
    r,n = map(int, input().split())
    print(math.factorial(n)//(math.factorial(n-r)*math.factorial(r)))

 

'[IT] > 백준' 카테고리의 다른 글

[백준] 2935 소음  (0) 2019.09.29
[백준] 13420 사칙연산  (0) 2019.09.29
[백준] 11179번 2진수 뒤집기 (C++, python3)  (0) 2019.09.21
[백준] 2744번 대소문자 바꾸기  (0) 2019.09.21
[백준] 1789번 수들의 합  (0) 2019.09.21
Comments