結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-12 03:47:52 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 191 bytes |
| コンパイル時間 | 100 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 12,772 KB |
| 最終ジャッジ日時 | 2024-07-06 15:49:18 |
| 合計ジャッジ時間 | 2,144 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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())])