[백준/파이썬] 1076번

민정·2023년 1월 4일
0

[백준/파이썬]

목록 보기
7/245
post-thumbnail

백준 1076번

문제

나의 풀이

배열을 통해 값을 저장하고 인덱스 값을 통해 결과 값을 도출했습니다.

코드

color = ['black', 'brown' , 'red', 'orange', 'yellow', 'green', 
'blue', 'violet', 'grey', 'white']

one = input()
two = input()
three = input()
result = 0

for i in color:
    if one == i:
        result += (color.index(i) * 10)

    if two == i:
        result += color.index(i)


for j in color:
    if three == j:
        result = result * (10**(color.index(j)))


print(result)

새로 알게된 점

인덱스 값 찾기: 이름.index('원하는 값')

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글