728x90
반응형
정렬 & 자료 구조(해시) 문제이다.
N = int(input())
d = {}
for _ in range(N):
s = input()
d[s] = d.get(s, 0) + 1
res = sorted(d.items(), key=lambda x:x[0])
res.sort(key=lambda x:x[1], reverse=True)
print(res[0][0])
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10026번 적록색약(python) (0) | 2021.03.11 |
---|---|
백준 알고리즘 11724번 연결 요소의 개수(python) (0) | 2021.03.11 |
백준 알고리즘 11557번 Yangjojang of The Year(python) (0) | 2021.03.11 |
백준 알고리즘 4963번 섬의 개수(python) (0) | 2021.03.10 |
백준 알고리즘 2583번 영역 구하기(python) (0) | 2021.03.10 |