結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー akitsugu777
提出日時 2019-09-18 17:06:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 153 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,152 KB
最終ジャッジ日時 2024-07-08 10:22:44
合計ジャッジ時間 1,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other WA * 3 RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = map(int, input().split())

NL = [0] * 7
for i in L:
    NL[i] += 1

ans = [i for i in range(N) if NL[i] == max(NL)]

print(max(ans))
0