結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-03 01:37:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 78,740 KB
最終ジャッジ日時 2024-09-13 11:00:27
合計ジャッジ時間 2,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,292 KB
testcase_01 AC 58 ms
77,440 KB
testcase_02 AC 39 ms
52,084 KB
testcase_03 AC 36 ms
52,428 KB
testcase_04 AC 37 ms
52,744 KB
testcase_05 AC 57 ms
77,540 KB
testcase_06 AC 37 ms
52,892 KB
testcase_07 AC 38 ms
53,900 KB
testcase_08 AC 37 ms
51,752 KB
testcase_09 AC 37 ms
52,476 KB
testcase_10 AC 37 ms
52,016 KB
testcase_11 AC 37 ms
53,320 KB
testcase_12 AC 37 ms
52,388 KB
testcase_13 AC 37 ms
52,836 KB
testcase_14 AC 49 ms
70,992 KB
testcase_15 AC 45 ms
64,116 KB
testcase_16 AC 53 ms
74,464 KB
testcase_17 AC 43 ms
62,784 KB
testcase_18 AC 53 ms
73,160 KB
testcase_19 AC 49 ms
69,312 KB
testcase_20 AC 56 ms
78,740 KB
testcase_21 AC 42 ms
59,664 KB
testcase_22 AC 46 ms
65,132 KB
testcase_23 AC 57 ms
77,636 KB
testcase_24 AC 56 ms
77,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = list(map(int, input().split()))
C = [0]*7
for l in L:
    C[l] += 1
M = max(C)
for i in reversed(range(7)):
    if C[i] == M:
        print(i)
        exit()
0