-Code
n, m = map(int, input().split())
total = m - 1
not_winning = []
for _ in range(m):
a, b = map(int, input().split())
if a >= n:
total -= 1
else:
not_winning.append(a)
if total == 0:
print(0)
else:
res = 0
for el in sorted(not_winning, reverse=True):
res += n - el
total -= 1
if total == 0:
break
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 24348번 ИЗРАЗ (0) | 2024.10.15 |
---|---|
[백준/파이썬] 14729번 칠무해 (0) | 2024.10.14 |
[백준/파이썬] 30306번 Better Dice (0) | 2024.10.12 |
[백준/파이썬] 9443번 Arrangement of Contest (0) | 2024.10.11 |
[백준/파이썬] 32288번 바코드 닉네임 (0) | 2024.10.10 |