본문 바로가기
python-algorithm

백준 11656 접미사 배열

by 무적김두칠 2021. 12. 21.

1
2
3
4
5
6
7
s=input()
lengthS=len(s)
ans=[]
for i in range(lengthS):
    ans.append(s[i:])
for i in sorted(ans):
    print (i)
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 1302 베스트셀러  (0) 2021.12.22
백준 10825 국영수  (0) 2021.12.21
백준 1543 문서 검색  (0) 2021.12.21
백준 3276 ICONS  (0) 2021.12.21
백준 9625 BABBA  (0) 2021.12.21

댓글