728x90
반응형
단순 문자열 문제이다.
li = sorted([input()[0] for _ in range(int(input()))])
s = set(li)
res = []
for c in s:
if li.count(c) >= 5:
res.append(c)
print(''.join(sorted(res)) if len(res) > 0 else "PREDAJA")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1225번 이상한 곱셈(python) (0) | 2021.02.17 |
---|---|
백준 알고리즘 1173번 운동(python) (0) | 2021.02.17 |
백준 알고리즘 2822번 점수 계산(python) (0) | 2021.02.17 |
백준 알고리즘 6627번 The Easiest Problem is This One(python) (0) | 2021.02.15 |
백준 알고리즘 7595번 Triangles(python) (0) | 2021.02.15 |