[백준/파이썬] 11656번

민정·2023년 4월 5일
0

[백준/파이썬]

목록 보기
129/245
post-thumbnail

📍백준 11656번 문제

https://www.acmicpc.net/problem/11656

코드

s = input()
temp = ''
c = []
for i in range(len(s)-1,-1,-1):
    temp = s[i] + temp
    c.append(temp)

c.sort()

for j in c:
    print(j)

풀이

for문을 반대로 돌려서 temp에 글자를 더해주고 리스트에 추가해준다. 이 때, temp는 누적값이므로 초기화 하지 않는다.
정렬 함수를 이용해 정렬한 뒤, 출력해준다.

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글