結果

問題 No.1808 Fullgold Alchemist
ユーザー MasKoaTSMasKoaTS
提出日時 2021-10-03 16:59:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,260 KB
最終ジャッジ日時 2024-10-01 07:36:39
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 174 ms
14,712 KB
testcase_06 AC 222 ms
27,720 KB
testcase_07 AC 228 ms
27,696 KB
testcase_08 AC 218 ms
33,260 KB
testcase_09 AC 230 ms
33,128 KB
testcase_10 AC 233 ms
33,252 KB
testcase_11 AC 225 ms
32,664 KB
testcase_12 AC 222 ms
28,544 KB
testcase_13 AC 216 ms
28,532 KB
testcase_14 AC 220 ms
29,068 KB
testcase_15 AC 234 ms
28,660 KB
testcase_16 AC 32 ms
11,136 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 58 ms
13,440 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 70 ms
14,976 KB
testcase_21 AC 43 ms
12,380 KB
testcase_22 AC 24 ms
10,752 KB
testcase_23 AC 37 ms
11,776 KB
testcase_24 AC 29 ms
11,136 KB
testcase_25 AC 32 ms
11,392 KB
testcase_26 AC 54 ms
14,492 KB
testcase_27 AC 63 ms
14,984 KB
testcase_28 AC 207 ms
30,960 KB
testcase_29 AC 82 ms
17,304 KB
testcase_30 AC 77 ms
16,548 KB
testcase_31 AC 182 ms
28,656 KB
testcase_32 AC 124 ms
21,644 KB
testcase_33 AC 158 ms
25,572 KB
testcase_34 AC 206 ms
30,512 KB
testcase_35 AC 147 ms
24,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

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

ans = s[0] // m
for i in range(1,n):
	ans = min(ans, s[i] // (m * (i+1)))

print(ans)
0