結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー convexineqconvexineq
提出日時 2021-02-19 17:59:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 922 ms
コンパイル使用メモリ 86,976 KB
実行使用メモリ 90,884 KB
最終ジャッジ日時 2023-10-14 12:44:57
合計ジャッジ時間 4,533 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,620 KB
testcase_01 AC 94 ms
90,824 KB
testcase_02 AC 74 ms
71,364 KB
testcase_03 AC 74 ms
71,052 KB
testcase_04 AC 74 ms
71,100 KB
testcase_05 AC 96 ms
90,628 KB
testcase_06 AC 75 ms
71,204 KB
testcase_07 AC 75 ms
71,296 KB
testcase_08 AC 75 ms
71,152 KB
testcase_09 AC 76 ms
71,292 KB
testcase_10 AC 72 ms
71,148 KB
testcase_11 AC 72 ms
71,304 KB
testcase_12 AC 75 ms
71,148 KB
testcase_13 AC 74 ms
71,080 KB
testcase_14 AC 88 ms
84,284 KB
testcase_15 AC 81 ms
77,680 KB
testcase_16 AC 91 ms
86,948 KB
testcase_17 AC 81 ms
77,124 KB
testcase_18 AC 91 ms
87,012 KB
testcase_19 AC 88 ms
83,008 KB
testcase_20 AC 96 ms
90,884 KB
testcase_21 AC 79 ms
76,072 KB
testcase_22 AC 85 ms
79,452 KB
testcase_23 AC 94 ms
90,708 KB
testcase_24 AC 96 ms
90,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*x, = map(int,input().split())
r = [0]*7
for i in x:
    r[i] += 1
print(max(range(7)[::-1], key= lambda i:r[i]))
0