본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 1076번 저항

by 현장 2021. 12. 16.

-코드

colors = ['black', 'brown', 'red', 'orange', 'yellow', 'green',
          'blue', 'violet', 'grey', 'white']
r = ''
for i in range(3):
    color = input()
    for j in range(10):
        if color == colors[j]:
            if i == 2:
                r = int(r) * (10 ** j)
            else:
                r += str(j)
print(r)