a, b, c = map(int, input().split())
nums = set([a, b, c])
if len(nums) == 1:
print(10_000 + a*1_000)
elif len(nums) == 3:
print(max(nums)*100)
else:
if a == b or a == c:
print(1_000 + a*100)
else:
print(1_000 + b*100)
'> 알고리즘 문제 풀이 > BOJ' 카테고리의 다른 글
**1074-Z (python, 파이썬) (0) | 2020.10.16 |
---|---|
2484-주사위 네개 (python, 파이썬) (0) | 2020.10.16 |
16769-Mixing Milk (python, 파이썬) (0) | 2020.10.16 |
9037-The candy war (python, 파이썬) (0) | 2020.10.15 |
17224-APC는 왜 서브태스크가 되었을까? (python, 파이썬) (0) | 2020.10.15 |
댓글