結果

問題 No.349 干支の置き物
ユーザー fV9TwBhUoa9S3eV
提出日時 2019-10-04 14:01:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-03 06:52:33
合計ジャッジ時間 1,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.349 干支の置き物
import math

n = int(input())
a = []
kinds = []
counts = []

for i in range(n):
    s = input()
    a.append(s)

    if s not in kinds:
        kinds.append(s)

for tmp in kinds:
    counts.append(a.count(tmp))

print('YES' if max(counts) <= math.ceil(n // 2) + 1 else 'NO')
0