結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-10-30 23:24:04 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 66 ms / 5,000 ms |
| コード長 | 302 bytes |
| コンパイル時間 | 163 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 12,776 KB |
| 最終ジャッジ日時 | 2024-09-14 21:58:39 |
| 合計ジャッジ時間 | 2,095 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
from collections import Counter
class Problem0079:
def solve(this):
n = int(input())
l = list(map(int, input().split()))
l = sorted(l, reverse=True)
print(Counter(l).most_common()[0][0])
if __name__ == "__main__":
problem = Problem0079()
problem.solve()