結果
| 問題 | No.79 過小評価ダメ・ゼッタイ |
| コンテスト | |
| ユーザー |
wata_python
|
| 提出日時 | 2019-08-17 22:49:25 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 110 ms / 5,000 ms |
| コード長 | 150 bytes |
| 記録 | |
| コンパイル時間 | 358 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 16,856 KB |
| 最終ジャッジ日時 | 2026-04-12 12:41:05 |
| 合計ジャッジ時間 | 4,179 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
from collections import Counter n = int(input()) l = list(map(int, input().split())) l = sorted(l, reverse=True) print(Counter(l).most_common()[0][0])
wata_python