-코드
arr = [3, 2, 1, 2, 3, 3, 2, 3, 3, 2, 2, 1, 2, 2, 1, 2, 2, 2, 1, 2, 1, 1, 1, 2, 2, 1]
s = input()
s2 = input()
couple = []
for i in range(len(s)):
name = ord(s[i]) - 65
name2 = ord(s2[i]) - 65
couple.append(arr[name])
couple.append(arr[name2])
while 1:
dp = []
if len(couple) == 2:
break
for i in range(len(couple) - 1):
num = couple[i] + couple[i + 1]
if num >= 10:
num -= 10
dp.append(num)
couple = dp
print(f'{couple[0]}{couple[1]}')
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 2605번 줄 세우기 (0) | 2021.12.09 |
---|---|
[백준/파이썬] 17202번 핸드폰 번호 궁합 (0) | 2021.12.08 |
[백준/파이썬] 17175번 피보나치는 지겨웡~ (0) | 2021.12.08 |
[백준/파이썬] 6810번 ISBN (0) | 2021.12.08 |
[백준/파이썬] 11815번 짝수? 홀수? (0) | 2021.12.07 |