반응형
https://www.acmicpc.net/problem/2480
a,b,c=map(int,input().split())
if a==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)
반응형
'📚 Algorithm' 카테고리의 다른 글
[Python] 백준 10797번 10부제 (0) | 2021.08.06 |
---|---|
[Python]백준 11283번 한글2 (0) | 2021.07.30 |
[Python] 백준 2522번 별찍기 -12 (0) | 2021.07.23 |
[Python] 백준 5532번 방학숙제 (0) | 2021.07.18 |
[Python] 백준 14928번 큰 수 (BIG) (0) | 2021.07.14 |
댓글