-코드
s = input()
s2 = input()
couple = []
for i in range(len(s)):
couple.append(int(s[i]))
couple.append(int(s2[i]))
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&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 1904번 01타일 (0) | 2021.12.09 |
---|---|
[백준/파이썬] 2605번 줄 세우기 (0) | 2021.12.09 |
[백준/파이썬] 15312번 이름 궁합 (0) | 2021.12.08 |
[백준/파이썬] 17175번 피보나치는 지겨웡~ (0) | 2021.12.08 |
[백준/파이썬] 6810번 ISBN (0) | 2021.12.08 |