haju__log
[python][백준/BOJ] 2480번 : 주사위 세개 본문
반응형
https://www.acmicpc.net/problem/2480
a,b,c = map(int,input().split())
if a==b and b==c:
result = 10000+a*1000
elif (a==b and b!=c) or (a==c and a!=b) :
result = 1000+a*100
elif (b==c and a!=b):
result = 1000+b*100
else :
result = max(a,b,c)
result *=100
print(result)
반응형
'BOJ_백준' 카테고리의 다른 글
[백준/BOJ] 10171번 : 고양이 (0) | 2023.02.22 |
---|---|
[백준/BOJ] 11382번 : 꼬마 정민 (0) | 2023.02.22 |
[python][백준/BOJ] 14681번 : 사분면 고르기 (0) | 2022.08.04 |
[python][백준/BOJ] 2884번 : 알람 시계 (0) | 2022.08.04 |
[python][백준/BOJ] 2530번 : 인공지능 시계 (0) | 2022.08.03 |