alpyrithm_알파이리즘
[알고리즘][Python] 백준(BOJ) 11365 !밀비 급일_파이썬 본문
11365 !밀비 급일 https://www.acmicpc.net/problem/11365
문제 풀기 전 공부할 것 : 구현, 문자열
풀이
<내용>
- while문으로 END가 입력될 때까지 계속 반복한다.
- 입력받고 뒤집어 출력한다.
<코드>
import sys
input = sys.stdin.readline
while True:
sentence = input().rstrip()
if sentence == 'END':
break
print(sentence[::-1])
728x90
반응형
'Algorithm > 백준 알고리즘_Python' 카테고리의 다른 글
[알고리즘][Python] 백준(BOJ) 1543 문서 검색_파이썬 (0) | 2020.09.16 |
---|---|
[알고리즘][Python] 백준(BOJ) 4999 아!_파이썬 (0) | 2020.09.15 |
[알고리즘][Python] 백준(BOJ) 5567 결혼식_파이썬 (0) | 2020.09.14 |
[알고리즘][Python] 백준(BOJ) 1926 그림_파이썬 (0) | 2020.09.13 |
[알고리즘][Python] 백준(BOJ) 1743 음식물 피하기_파이썬 (0) | 2020.09.12 |
Comments