-Code
a_list = sorted([int(input()) for _ in range(4)])
b = int(input())
if len(set(a_list)) == 1:
print(1)
elif a_list[0] + b == a_list[1] and a_list[1] == a_list[2] and a_list[2] == a_list[3]:
print(1)
else:
print(0)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 23663번 Deja vu of Go Players (0) | 2024.04.21 |
---|---|
[백준/파이썬] 31655번 International Dates (0) | 2024.04.20 |
[백준/파이썬] 15083번 Life Savings (0) | 2024.04.18 |
[백준/파이썬] 30544번 Cuckoo! Cuckoo! (0) | 2024.04.17 |
[백준/파이썬] 26502번 Decoder (0) | 2024.04.16 |