본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 14409번 Tuna

by 현장 2023. 6. 10.

-Code

n = int(input())
x = int(input())
res = 0

for _ in range(n):
    p1, p2 = map(int, input().split())

    if abs(p1 - p2) <= x:
        res += max(p1, p2)
    else:
        res += int(input())
print(res)