結果
| 問題 |
No.79 過小評価ダメ・ゼッタイ
|
| コンテスト | |
| ユーザー |
matsu7874
|
| 提出日時 | 2014-11-27 23:32:30 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 203 bytes |
| コンパイル時間 | 271 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 12,452 KB |
| 最終ジャッジ日時 | 2025-01-03 09:28:58 |
| 合計ジャッジ時間 | 2,418 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 22 |
ソースコード
N = int(input())
L = [x for x in input().split()]
L_set = set(L)
max_l = 0
max_cnt = 0
for i in L_set:
if L.count(i) >= max_cnt and max_l<i:
max_cnt = L.count(i)
max_l = i
print(max_l)
matsu7874