結果
| 問題 | No.349 干支の置き物 |
| コンテスト | |
| ユーザー |
fV9TwBhUoa9S3eV
|
| 提出日時 | 2019-10-04 14:04:10 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 344 bytes |
| 記録 | |
| コンパイル時間 | 88 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-10-03 06:52:35 |
| 合計ジャッジ時間 | 1,799 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 WA * 3 |
ソースコード
# 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(a)
# print(kinds)
# print(counts)
print('YES' if max(counts) < math.ceil(n // 2) + 1 else 'NO')
fV9TwBhUoa9S3eV