結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー rlangevinrlangevin
提出日時 2023-11-18 18:27:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 166 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 77,652 KB
最終ジャッジ日時 2024-09-26 05:52:49
合計ジャッジ時間 2,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,880 KB
testcase_01 AC 65 ms
77,056 KB
testcase_02 AC 42 ms
51,748 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 42 ms
51,584 KB
testcase_05 AC 66 ms
77,440 KB
testcase_06 AC 45 ms
51,968 KB
testcase_07 AC 41 ms
52,200 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 42 ms
51,712 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 43 ms
52,096 KB
testcase_12 AC 42 ms
51,900 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 59 ms
70,144 KB
testcase_15 AC 52 ms
62,848 KB
testcase_16 AC 62 ms
72,832 KB
testcase_17 AC 52 ms
62,464 KB
testcase_18 AC 63 ms
72,832 KB
testcase_19 AC 58 ms
68,736 KB
testcase_20 AC 67 ms
77,652 KB
testcase_21 AC 49 ms
58,608 KB
testcase_22 AC 55 ms
64,512 KB
testcase_23 AC 67 ms
76,800 KB
testcase_24 AC 66 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [0] * 7
for i in list(map(int, input().split())):
	A[i] += 1
	
ans, ma = 0, 0
for i in range(7):
	if A[i] >= ma:
		ma = A[i]
		ans = i
print(ans)
0