백준 2480번 주사위 세개 파이썬

2022.03.07 15:50

백준 2480번 주사위 세개 파이썬 코드이다.

a = list(map(int, input().split()))
b = set(a)
if len(b) == 1:
    print(10000 + a[0] * 1000)
elif len(b) == 2:
    for i in b:
        a.remove(i)
    print(1000 + a[0] * 100)
else:
    print(max(a) * 100)

백준 관련 글

더보기