結果
| 問題 | No.79 過小評価ダメ・ゼッタイ |
| コンテスト | |
| ユーザー |
harurun
|
| 提出日時 | 2022-02-26 18:48:32 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 100 ms / 5,000 ms |
| + 771µs | |
| コード長 | 179 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 17,148 KB |
| 最終ジャッジ日時 | 2026-08-06 14:46:25 |
| 合計ジャッジ時間 | 4,523 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
from collections import Counter N=int(input()) L=sorted(list(Counter(list(map(int,input().split()))).items()),key=lambda x:x[1]) cnt=L[-1][1] print(max(i for i,j in L if j==cnt))
harurun