[백준] #1010 다리 놓기 python
2023. 1. 2. 16:18
https://www.acmicpc.net/problem/1010
📕 설명 📕
M개 중 N개를 뽑으면 되는 문제이다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
for i in range(N):
b, a = map(int ,input().split())
result = 1
for i in range(a,a-b,-1):
result *= i
for i in range(b,1,-1):
result //= i
print(result)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1676 팩토리얼 0의 개수 python (0) | 2023.01.04 |
---|---|
[백준] #9375 패션왕 신해빈 python (0) | 2023.01.03 |
[백준] #11051 이항 계수 2 python (0) | 2023.01.02 |
[백준] #11050 이항 계수 1 python (0) | 2023.01.02 |
[백준] #3036 링 python (0) | 2023.01.02 |