結果
| 問題 | No.79 過小評価ダメ・ゼッタイ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-12 03:45:54 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 185 bytes |
| 記録 | |
| コンパイル時間 | 551 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 16,988 KB |
| 最終ジャッジ日時 | 2026-03-28 05:37:59 |
| 合計ジャッジ時間 | 3,847 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 2 WA * 20 |
ソースコード
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(max(dict.values()))