結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-06-24 15:29:36 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 62 ms / 5,000 ms |
| コード長 | 154 bytes |
| コンパイル時間 | 249 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 12,764 KB |
| 最終ジャッジ日時 | 2024-06-11 16:26:50 |
| 合計ジャッジ時間 | 2,342 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
n = int(input())
l = list(map(int, input().split()))
l2 = list(set(l))
l3 = []
for i in l2:
l3.append([l.count(i), i])
print(sorted(l3)[::-1][0][1])