https://www.acmicpc.net/problem/2480
import sys
a,b,c = map(int,input().split())
if (a==b)&(b==c) : //다 같을 때
print(10000+(a*1000))
elif (a!=b)&(b!=c)&(a!=c) : //다 다를 때
print(max(a,b,c)*100)
else :
if(a==b) : //두 개만 같을 때 두 개만 비교해주면 됨
print(1000+a*100)
else : print(1000+c*100)
'PROGRAMMING CODE > PYTHON' 카테고리의 다른 글
[BAEKJOON] No.3009 Python (0) | 2023.03.21 |
---|---|
[BAEKJOON] No. 4101 Python (0) | 2023.03.21 |
[BAEKJOON] No.1934 Python (0) | 2023.03.21 |
[BAEKJOON] No.10039 Python (0) | 2023.02.09 |
[BAEKJOON] No.1789 Python (0) | 2023.02.09 |