結果

問題 No.349 干支の置き物
ユーザー ああいいああいい
提出日時 2022-03-17 21:35:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 55,648 KB
最終ジャッジ日時 2024-10-01 20:35:11
合計ジャッジ時間 2,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,960 KB
testcase_01 AC 39 ms
53,620 KB
testcase_02 AC 39 ms
54,284 KB
testcase_03 AC 40 ms
54,612 KB
testcase_04 AC 40 ms
55,160 KB
testcase_05 AC 41 ms
54,888 KB
testcase_06 AC 41 ms
54,156 KB
testcase_07 AC 44 ms
54,040 KB
testcase_08 AC 40 ms
54,604 KB
testcase_09 AC 41 ms
55,064 KB
testcase_10 AC 43 ms
55,648 KB
testcase_11 AC 39 ms
54,840 KB
testcase_12 AC 40 ms
55,524 KB
testcase_13 AC 41 ms
54,664 KB
testcase_14 AC 39 ms
53,416 KB
testcase_15 AC 38 ms
53,792 KB
testcase_16 AC 39 ms
54,596 KB
testcase_17 AC 38 ms
54,600 KB
testcase_18 AC 38 ms
53,408 KB
testcase_19 AC 39 ms
55,116 KB
testcase_20 AC 40 ms
54,804 KB
testcase_21 AC 40 ms
54,316 KB
testcase_22 AC 40 ms
53,856 KB
testcase_23 AC 39 ms
54,944 KB
testcase_24 AC 40 ms
54,652 KB
testcase_25 AC 41 ms
54,420 KB
testcase_26 AC 40 ms
54,992 KB
testcase_27 AC 41 ms
54,220 KB
testcase_28 AC 40 ms
54,420 KB
testcase_29 AC 40 ms
53,852 KB
testcase_30 AC 39 ms
55,032 KB
testcase_31 AC 40 ms
54,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [input() for _ in range(N)]
from collections import defaultdict
d = defaultdict(int)
for a in A:
    d[a] += 1
M = max(d.values())
if M > (N+1)//2:
    print('NO')
else:
    print('YES')
0