結果

問題 No.1808 Fullgold Alchemist
ユーザー V_MelvilleV_Melville
提出日時 2022-01-15 09:50:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,252 KB
最終ジャッジ日時 2024-11-21 07:25:29
合計ジャッジ時間 7,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 190 ms
13,996 KB
testcase_06 AC 246 ms
26,444 KB
testcase_07 AC 242 ms
26,436 KB
testcase_08 AC 241 ms
32,668 KB
testcase_09 AC 258 ms
32,672 KB
testcase_10 AC 258 ms
33,252 KB
testcase_11 AC 257 ms
32,780 KB
testcase_12 AC 253 ms
28,544 KB
testcase_13 AC 246 ms
28,552 KB
testcase_14 AC 252 ms
28,556 KB
testcase_15 AC 248 ms
28,540 KB
testcase_16 AC 35 ms
11,264 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 62 ms
13,440 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 78 ms
15,064 KB
testcase_21 AC 46 ms
12,288 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 42 ms
11,776 KB
testcase_24 AC 33 ms
11,136 KB
testcase_25 AC 36 ms
11,264 KB
testcase_26 AC 59 ms
14,372 KB
testcase_27 AC 68 ms
14,820 KB
testcase_28 AC 234 ms
30,760 KB
testcase_29 AC 93 ms
17,244 KB
testcase_30 AC 86 ms
16,580 KB
testcase_31 AC 211 ms
28,668 KB
testcase_32 AC 141 ms
21,644 KB
testcase_33 AC 181 ms
25,584 KB
testcase_34 AC 230 ms
30,524 KB
testcase_35 AC 166 ms
24,388 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