보안을 그리다, 훈이

[Baekjoon/Python3] 11656번 접미사 배열 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 11656번 접미사 배열

HooNeee 2020. 12. 7. 00:41

[Baekjoon/Python3] 11656번 접미사 배열

 

www.acmicpc.net/problem/11656

 

11656번: 접미사 배열

첫째 줄에 문자열 S가 주어진다. S는 알파벳 소문자로만 이루어져 있고, 길이는 1,000보다 작거나 같다.

www.acmicpc.net

 

s = input()
list_s = []
for i in range(len(s)):
    list_s.append(s[i:])
list_s.sort()
for l in list_s:
    print(l)
Comments