백준 풀이

백준 2480번 파이썬

ag2개발자 2022. 8. 20. 22:41
a,b,c= map(int,input().split())
if a== b and b==c:
    print(10000+a*1000)
elif a==b:
    print(1000+a*100)
elif b==c:
    print(1000+b*100)
elif a==c:
    print(1000+a*100)
else:
    print(max(a,b,c)*100)

'백준 풀이' 카테고리의 다른 글

백준 2609번 파이썬  (0) 2022.08.21
백준 2775 파이썬  (0) 2022.08.20
백준 1085번 파이썬  (0) 2022.08.20
백준 1193번 파이썬  (0) 2022.08.20
백준 18108번 파이썬  (0) 2022.08.18