結果
| 問題 | No.349 干支の置き物 |
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-20 21:02:55 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 68 ms / 2,000 ms |
| コード長 | 251 bytes |
| 記録 | |
| コンパイル時間 | 217 ms |
| コンパイル使用メモリ | 96,236 KB |
| 実行使用メモリ | 79,704 KB |
| 最終ジャッジ日時 | 2026-07-07 12:39:33 |
| 合計ジャッジ時間 | 4,093 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
import sys
from collections import Counter
n = int(sys.stdin.readline())
arr = [sys.stdin.readline().strip() for _ in range(n)]
counts = Counter(arr)
max_count = max(counts.values())
if max_count > (n + 1) // 2:
print("NO")
else:
print("YES")
lam6er