-Code
wm = sorted(list(map(int, input().split())))
res = 1e9
for i in range(4):
for j in range(4):
if i == j:
continue
temp1 = wm[i] + wm[j]
diff = abs(sum(wm) - (temp1 * 2))
res = min(res, diff)
diff = abs(sum(wm) - (wm[i] * 2))
res = min(res, diff)
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 19751번 Fractification (0) | 2024.04.13 |
---|---|
[백준/파이썬] 24333번 СРЕЩА НА ПРИЯТЕЛИ (0) | 2024.04.12 |
[백준/파이썬] 29002번 Космический корабль (0) | 2024.04.10 |
[백준/파이썬] 17924번 Cooking Water (0) | 2024.04.09 |
[백준/파이썬] 25246번 Brexiting and Brentering (0) | 2024.04.08 |