[백준]S5-1181

py_code·2020년 12월 27일
0

백준-실버5

목록 보기
9/19
post-custom-banner

import sys
n = int(input())
dctn = {}
L = sorted(set(list(sys.stdin.readline().strip() for _ in range(n) )))
len_L = list(map(len, L))

for l in L:
    if len(l) in dctn:
        dctn[len(l)].append(l)
    else:
        dctn[len(l)] = [l]
for k,v in sorted(dctn.items()):
    for e in v:
        print(e)
profile
개발자를 꿈꿉니다.
post-custom-banner

0개의 댓글