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

[백준/파이썬] 15444번 Vera and ABCDE

by 현장 2023. 6. 20.

-Code

v = [
    ["***", "*.*", "***", "*.*", "*.*"],
    ["***", "*.*", "***", "*.*", "***"],
    ["***", "*..", "*..", "*..", "***"],
    ["***", "*.*", "*.*", "*.*", "***"],
    ["***", "*..", "***", "*..", "***"]
]

n = int(input())
s = input()

for i in range(5):
    for j in s:
        print(v[ord(j) - ord('A')][i], end='')
    print()