-Code
alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
cnt = [3, 2, 1, 2, 3, 3, 3, 3, 1, 1, 3, 1, 3, 3, 1, 2, 2, 2, 1, 2, 1, 1, 2, 2, 2, 1]
dic = {}
total = 0
for i in range(len(alpha)):
dic[alpha[i]] = cnt[i]
s = input()
for word in s:
total += dic[word]
print("I'm a winner!" if total % 2 == 1 else "You're the winner?")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 6550번 부분 문자열 (0) | 2022.05.13 |
---|---|
[백준/파이썬] 4659번 비밀번호 발음하기 (0) | 2022.05.13 |
[백준/파이썬] 9046번 복호화 (0) | 2022.05.13 |
[백준/파이썬] 20438번 출석체크 (0) | 2022.05.13 |
[백준/파이썬] 1965번 상자넣기 (0) | 2022.05.12 |