結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー kohei2019kohei2019
提出日時 2021-05-22 14:58:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 205 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 78,332 KB
最終ジャッジ日時 2024-10-10 11:43:16
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,332 KB
testcase_01 AC 59 ms
77,996 KB
testcase_02 AC 37 ms
52,996 KB
testcase_03 AC 38 ms
53,100 KB
testcase_04 AC 38 ms
52,212 KB
testcase_05 AC 59 ms
78,332 KB
testcase_06 AC 39 ms
52,144 KB
testcase_07 AC 38 ms
51,936 KB
testcase_08 AC 38 ms
53,048 KB
testcase_09 AC 37 ms
52,556 KB
testcase_10 AC 37 ms
52,700 KB
testcase_11 AC 38 ms
52,736 KB
testcase_12 AC 38 ms
52,696 KB
testcase_13 AC 37 ms
53,248 KB
testcase_14 AC 52 ms
71,508 KB
testcase_15 AC 44 ms
63,484 KB
testcase_16 AC 54 ms
73,624 KB
testcase_17 AC 44 ms
64,048 KB
testcase_18 AC 56 ms
73,020 KB
testcase_19 AC 50 ms
69,912 KB
testcase_20 AC 60 ms
78,144 KB
testcase_21 AC 42 ms
58,976 KB
testcase_22 AC 48 ms
65,764 KB
testcase_23 AC 57 ms
76,936 KB
testcase_24 AC 58 ms
78,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsL = list(map(int,input().split()))
cnter = [0]*7
for i in range(N):
    cnter[lsL[i]] += 1
maxl = max(cnter)

ans = 0
for i in range(7):
    if maxl==cnter[i]:
        ans = i
print(ans)
0