結果
問題 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
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')