結果
| 問題 |
No.921 ずんだアロー
|
| コンテスト | |
| ユーザー |
deideiro
|
| 提出日時 | 2019-11-25 18:01:52 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 190 bytes |
| コンパイル時間 | 218 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 25,420 KB |
| 最終ジャッジ日時 | 2024-10-13 11:42:24 |
| 合計ジャッジ時間 | 3,109 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 WA * 7 |
ソースコード
#yukicoder 921 ずんだアロー import math from collections import Counter N = int(input()) A = list(map(int,input().split())) C = Counter(A) print(max(math.ceil(N / 2),max(C.values())))
deideiro