結果
| 問題 | No.79 過小評価ダメ・ゼッタイ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-03 11:57:25 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 245 bytes |
| 記録 | |
| コンパイル時間 | 562 ms |
| コンパイル使用メモリ | 20,568 KB |
| 実行使用メモリ | 16,856 KB |
| 最終ジャッジ日時 | 2026-05-16 23:30:17 |
| 合計ジャッジ時間 | 4,099 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 11 WA * 11 |
ソースコード
# coding=UTF-8; import collections; n = int(input()) levelList = list(map(int, input().split())) listCount = collections.Counter(levelList) sortList = listCount.most_common() sortList.sort(key=lambda x:x[0],reverse=True) print(sortList[0][0])