본문 바로가기

코딩/Python

[Python] 백준 2480 주사위 세개

반응형

코드 작성

a,b,c=map(int,input().split())

if a==b==c:
    print(10000+a*1000)
elif a==b and a!=c:
    print(1000+a*100)
elif a!=b and b==c:
    print(1000+b*100)
elif a==c and b!=c:
    print(1000+a*100)
else:
    print(100*max(a,b,c))

 

코드 풀이

 

#1. if, elif, else

1번째 조건 if

2, 3,4번째 조건 elif

5번째 조건 else

이렇게 표현해야 한다.

 

반응형

'코딩 > Python' 카테고리의 다른 글

[Python] 백준 10952 A+B -5  (0) 2022.11.13
[Python] 백준 2439  (0) 2022.11.13
[Python] 백준 10824 네 수  (0) 2022.11.13
[Python] 백준 8393 합  (0) 2022.11.12
[Python] 백준 2739 구구단  (0) 2022.11.07