結果

問題 No.349 干支の置き物
ユーザー norioc
提出日時 2025-02-18 21:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 53,632 KB
最終ジャッジ日時 2025-02-18 21:42:20
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
freq = Counter()
for _ in range(N):
    A = input()
    freq[A] += 1

v = max(freq.values())
m = (N + 1) // 2

if v <= m:
    print('YES')
else:
    print('NO')
0