honey_pot
[python] 백준 2480번 본문
a, b, c = map(int, input().split())
if a == b and b == c:
print(10000+a*1000)
elif a ==b or b ==c:
print(1000+b*100)
elif a == c:
print(1000+a*100)
else: print(max(a, b, c)*100)
'문제 풀이' 카테고리의 다른 글
[python] 백준 2476번 (0) | 2021.06.06 |
---|---|
[python] 백준 4101번 (0) | 2021.06.06 |
[python] 백준 2754번 (0) | 2021.06.03 |
[python] 백준 10156번 (0) | 2021.06.03 |
[python] 백준 11557번 (0) | 2021.06.03 |
Comments