728x90
2019 인하대학교 프로그래밍 경진대회(IUPC) G번 문제
from sys import stdin
n, m = list(map(int, stdin.readline().split()))
n1, n2 = stdin.readline().split()
n1_index = 0
n2_index = 0
s = ""
alphabet = {'A':3, 'B':2, 'C':1, 'D':2, 'E':4, 'F':3, 'G':1, 'H':3, 'I':1, 'J':1, 'K':3, 'L':1, 'M':3, 'N':2, 'O':1, 'P':2, 'Q':2, 'R':2, 'S':1, 'T':2, 'U':1, 'V':1, 'W':1, 'X':2, 'Y':2, 'Z':1}
while not (n1_index == n and n2_index == m):
if n1_index < len(n1):
s += n1[n1_index]
n1_index += 1
if n2_index < len(n2):
s += n2[n2_index]
n2_index += 1
count = [0] * (n + m)
for i in range(n + m):
count[i] = alphabet[s[i]]
for i in range(n + m - 1, 1, -1):
for j in range(i):
count[j] = (count[j] + count[j + 1]) % 10
print("{}%".format(count[0] * 10 + count[1]))
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 17266번 어두운 굴다리 (0) | 2020.01.18 |
---|---|
[백준] 17264번 I AM IRONMAN (0) | 2020.01.18 |
[백준] 1932번 정수 삼각형 (0) | 2020.01.18 |
[백준] 14890번 경사로 (0) | 2020.01.16 |
[백준] 14503 로봇 청소기 (0) | 2020.01.15 |