728x90
BOJ 11365 !밀비 급일
문제
당신은 길을 가다가 이상한 쪽지를 발견했다.
그 쪽지에는 암호가 적혀 있었는데, 똑똑한 당신은 암호가 뒤집으면 해독된다는 것을 발견했다.
이 암호를 해독하는 프로그램을 작성하시오.
시간 제한 : 1 초
메모리 제한 : 256 MB
입력
한 줄에 하나의 암호가 주어진다. 암호의 길이는 500을 넘지 않는다.
마지막 줄에는 "END"가 주어진다. (END는 해독하지 않는다.)
출력
각 암호가 해독된 것을 한 줄에 하나씩 출력한다.
예제 입력 1
!edoc doog a tahW
noitacitsufbo
erafraw enirambus detcirtsernu yraurbeF fo tsrif eht no nigeb ot dnetni eW
lla sees rodroM fo drol eht ,ssertrof sih nihtiw delaecnoC
END
예제 출력 1
What a good code!
obfustication
We intend to begin on the first of February unrestricted submarine warfare
Concealed within his fortress, the lord of Mordor sees all
풀이
import sys
input = sys.stdin.readline
while True:
s = input().rstrip()
if s == 'END':
break
print(s[::-1])
728x90
'Algorithm(Python) > 문자열' 카테고리의 다른 글
[Algorithm] 백준 BOJ 11478 서로 다른 부분 문자열의 개수(python 파이썬) (0) | 2022.12.19 |
---|---|
[Algorithm] 백준 BOJ 10987 모음의 개수(python 파이썬) (0) | 2022.12.18 |
[Algorithm] 백준 BOJ 2745 진법 변환(python 파이썬) (0) | 2022.12.16 |
[Algorithm] 백준 BOJ 1357 뒤집힌 덧셈(python 파이썬) (0) | 2022.12.15 |
[Algorithm] 백준 BOJ 1159 농구 경기(python 파이썬) (0) | 2022.12.14 |