結果
| 問題 |
No.349 干支の置き物
|
| コンテスト | |
| ユーザー |
fV9TwBhUoa9S3eV
|
| 提出日時 | 2019-10-04 14:07:08 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 29 ms / 2,000 ms |
| コード長 | 340 bytes |
| コンパイル時間 | 83 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-10-03 06:52:38 |
| 合計ジャッジ時間 | 1,733 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
# 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