結果

問題 No.349 干支の置き物
ユーザー 👑 rin204
提出日時 2020-08-20 01:31:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-12 12:45:23
合計ジャッジ時間 2,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
dd = defaultdict(int)
n = int(input())
max_cnt = 0
for _ in range(n):
    a = input()
    dd[a] += 1
    max_cnt = max(max_cnt, dd[a])
if (n + 1) // 2 >= max_cnt:
    print("YES")
else:
    print("NO")
0