結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー dangodango
提出日時 2023-05-28 13:01:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 99 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 10,052 KB
最終ジャッジ日時 2023-08-27 07:34:19
合計ジャッジ時間 2,461 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
10,052 KB
testcase_02 AC 15 ms
7,848 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 42 ms
9,996 KB
testcase_06 AC 15 ms
7,936 KB
testcase_07 AC 14 ms
7,844 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 15 ms
7,796 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 32 ms
8,988 KB
testcase_15 AC 21 ms
8,704 KB
testcase_16 AC 36 ms
9,452 KB
testcase_17 AC 22 ms
8,664 KB
testcase_18 AC 35 ms
9,336 KB
testcase_19 AC 30 ms
8,964 KB
testcase_20 AC 43 ms
9,948 KB
testcase_21 AC 15 ms
7,936 KB
testcase_22 AC 24 ms
8,792 KB
testcase_23 AC 40 ms
9,748 KB
testcase_24 AC 42 ms
9,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
r=[0]*6
a=list(map(int,input().split()))
for i in a:
  r[i-1]+=1
print(r.index(max(r))+1)
0