結果

問題 No.1808 Fullgold Alchemist
ユーザー irumo8202irumo8202
提出日時 2022-01-14 22:08:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,128 KB
最終ジャッジ日時 2024-11-20 10:44:33
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 201 ms
14,716 KB
testcase_06 AC 262 ms
27,468 KB
testcase_07 AC 258 ms
27,532 KB
testcase_08 AC 262 ms
33,124 KB
testcase_09 AC 260 ms
33,124 KB
testcase_10 AC 259 ms
33,128 KB
testcase_11 AC 263 ms
32,660 KB
testcase_12 AC 268 ms
28,284 KB
testcase_13 AC 269 ms
28,404 KB
testcase_14 AC 268 ms
29,052 KB
testcase_15 AC 274 ms
28,404 KB
testcase_16 AC 37 ms
11,008 KB
testcase_17 AC 30 ms
10,496 KB
testcase_18 AC 68 ms
13,312 KB
testcase_19 AC 34 ms
10,880 KB
testcase_20 AC 86 ms
14,720 KB
testcase_21 AC 51 ms
12,380 KB
testcase_22 AC 31 ms
10,496 KB
testcase_23 AC 45 ms
11,776 KB
testcase_24 AC 37 ms
11,008 KB
testcase_25 AC 38 ms
11,264 KB
testcase_26 AC 64 ms
14,236 KB
testcase_27 AC 75 ms
14,728 KB
testcase_28 AC 251 ms
30,576 KB
testcase_29 AC 99 ms
17,048 KB
testcase_30 AC 95 ms
16,448 KB
testcase_31 AC 226 ms
28,404 KB
testcase_32 AC 151 ms
21,388 KB
testcase_33 AC 196 ms
25,444 KB
testcase_34 AC 252 ms
30,260 KB
testcase_35 AC 181 ms
24,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))

accA = [0]
val = 1 << 60
for i in range(N):
    accA.append(accA[-1] + A[i])
    val = min(val, accA[-1] // (i + 1))

print(val // M)
0