結果

問題 No.1808 Fullgold Alchemist
ユーザー MasKoaTSMasKoaTS
提出日時 2021-12-22 11:05:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 101,504 KB
最終ジャッジ日時 2024-09-16 04:18:12
合計ジャッジ時間 4,624 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 37 ms
51,328 KB
testcase_04 AC 34 ms
51,200 KB
testcase_05 AC 71 ms
95,744 KB
testcase_06 AC 79 ms
101,504 KB
testcase_07 AC 79 ms
101,504 KB
testcase_08 AC 94 ms
99,840 KB
testcase_09 AC 94 ms
100,096 KB
testcase_10 AC 93 ms
100,124 KB
testcase_11 AC 95 ms
100,096 KB
testcase_12 AC 81 ms
100,352 KB
testcase_13 AC 84 ms
100,480 KB
testcase_14 AC 83 ms
100,480 KB
testcase_15 AC 84 ms
100,352 KB
testcase_16 AC 40 ms
59,392 KB
testcase_17 AC 35 ms
51,840 KB
testcase_18 AC 46 ms
65,792 KB
testcase_19 AC 41 ms
58,752 KB
testcase_20 AC 50 ms
68,992 KB
testcase_21 AC 42 ms
62,336 KB
testcase_22 AC 35 ms
51,456 KB
testcase_23 AC 41 ms
61,184 KB
testcase_24 AC 40 ms
59,904 KB
testcase_25 AC 41 ms
59,520 KB
testcase_26 AC 47 ms
64,384 KB
testcase_27 AC 47 ms
67,840 KB
testcase_28 AC 86 ms
100,992 KB
testcase_29 AC 54 ms
72,960 KB
testcase_30 AC 53 ms
71,424 KB
testcase_31 AC 78 ms
95,872 KB
testcase_32 AC 63 ms
81,664 KB
testcase_33 AC 71 ms
91,008 KB
testcase_34 AC 81 ms
100,352 KB
testcase_35 AC 68 ms
88,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n,m = map(int, input().split())
a = list(map(int, input().split()))

ans = 10 ** 18
s = 0
for i in range(n):
	s += a[i]
	k = s // ((i + 1) * m)
	if(k < ans):
		ans = k
print(ans)
0