-Code
alpa = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
res = []
while True:
line1 = input()
if line1 == "ENDOFINPUT":
break
decode = ""
s = input().strip()
for w in s:
if w not in alpa:
decode += w
continue
decode += alpa[(alpa.find(w) - 5) % 26]
input()
print(decode)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 12571번 Rope Intranet (Small) (0) | 2024.10.27 |
---|---|
[백준/파이썬] 22421번 Koto Municipal Subway (0) | 2024.10.26 |
[백준/파이썬] 22341번 사각형 면적 (0) | 2024.10.24 |
[백준/파이썬] 27566번 Blueberry Waffle (3) | 2024.10.23 |
[백준/파이썬] 26564번 Poker Hand (0) | 2024.10.22 |