結果
| 問題 | No.79 過小評価ダメ・ゼッタイ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-12 03:47:52 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 191 bytes |
| 記録 | |
| コンパイル時間 | 526 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 21,388 KB |
| 最終ジャッジ日時 | 2026-03-28 05:38:11 |
| 合計ジャッジ時間 | 6,004 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 2 WA * 4 RE * 16 |
ソースコード
N = int(input())
arr = list(map(int, input().split()))
dict = {}
for a in arr:
if a not in dict:
dict.update({a:1})
else:
dict[a] += 1
print(dict[max(dict.values())])