백준단어정렬1 백준 1181 단어정렬 실버5 (sort) 문제 설명알파벳 소문자로 이루어진 N개의 단어가 들어오면 아래와 같은 조건에 따라 정렬하는 프로그램중복된 단어는 하나만 남기고 제거길이가 짧은 것부터길이가 같으면 사전 순으로 입력값단어의 개수 N~N : 단어(길이 13butiwonthesitatenomorenomoreitcannotwaitimyours 출력값조건에 따라 단어들 출력iimitnobutmorewaitwontyourscannothesitate 정답 코드# 114312KB, 152ms(PyPy3)N = int(input())sentence = set() # set으로 중복 제거for _ in range(N) : word = input() sentence.add(word)sentence = sorted(senten.. 개발새발개발 2024. 12. 31. 이전 1 다음