https://www.acmicpc.net/problem/20920
import sys
from collections import Counter
input = sys.stdin.readline
n, m = map(int, input().split(" "))
word = []
for _ in range(n):
temp = input().rstrip()
if len(temp) >= m:
word.append(temp)
counter = dict(Counter(word))
sorted_counter = sorted(counter.items(), key=lambda x:(-x[1], -len(x[0]), x[0]))
for word in sorted_counter:
print(word[0])
728x90
반응형
'🔻PS > Baekjoon' 카테고리의 다른 글
[Baekjoon] 백준 20922 겹치는 건 싫어 Python (0) | 2024.09.24 |
---|---|
[Baekjoon] 백준 1806 부분합 Python (0) | 2024.09.23 |
[Baekjoon] 백준 1138 한 줄로 서기 Python (1) | 2024.09.17 |
[Baekjoon] 백준 2533 랭킹전 대기열 Python (1) | 2024.09.16 |
[Baekjoon] 백준 2533 사회망 서비스(SNS) Python (2) | 2024.09.16 |