본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#233 백준 파이썬 [11656] 접미사 배열

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

 

Python Code

S = str(input())
S_list = []

for _ in S:
    S_list.append(S)
    S = S[1:]

for i in sorted(S_list):
    print(i)