結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー itezpaceitezpace
提出日時 2016-08-21 17:50:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 71,468 KB
最終ジャッジ日時 2024-06-26 08:02:01
合計ジャッジ時間 2,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,976 KB
testcase_01 AC 52 ms
70,976 KB
testcase_02 AC 39 ms
52,256 KB
testcase_03 AC 39 ms
52,348 KB
testcase_04 AC 38 ms
52,792 KB
testcase_05 AC 51 ms
70,236 KB
testcase_06 AC 37 ms
52,120 KB
testcase_07 AC 37 ms
52,956 KB
testcase_08 AC 39 ms
52,192 KB
testcase_09 AC 37 ms
52,000 KB
testcase_10 AC 37 ms
52,760 KB
testcase_11 AC 37 ms
52,560 KB
testcase_12 AC 37 ms
53,028 KB
testcase_13 AC 37 ms
53,344 KB
testcase_14 AC 45 ms
65,696 KB
testcase_15 AC 42 ms
62,400 KB
testcase_16 AC 48 ms
68,412 KB
testcase_17 AC 43 ms
60,784 KB
testcase_18 AC 50 ms
68,516 KB
testcase_19 AC 46 ms
65,556 KB
testcase_20 AC 51 ms
70,200 KB
testcase_21 AC 41 ms
58,808 KB
testcase_22 AC 44 ms
63,204 KB
testcase_23 AC 51 ms
69,884 KB
testcase_24 AC 52 ms
71,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[0,0,0,0,0,0]
li=input()
lis=li.split()
for i in range(0,n):
    a=int(lis[i])
    l[a-1]+=1
x=0
y=0
for i in range(0,6):
    if l[i]>=x:
        x=l[i]
        y=i+1
print(y)
0