結果

問題 No.1808 Fullgold Alchemist
ユーザー lloyzlloyz
提出日時 2022-01-14 21:35:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,536 KB
最終ジャッジ日時 2024-11-20 08:21:21
合計ジャッジ時間 6,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 188 ms
14,588 KB
testcase_06 AC 230 ms
23,060 KB
testcase_07 AC 231 ms
23,060 KB
testcase_08 AC 247 ms
32,536 KB
testcase_09 AC 242 ms
32,536 KB
testcase_10 AC 245 ms
32,532 KB
testcase_11 AC 241 ms
32,532 KB
testcase_12 AC 245 ms
28,408 KB
testcase_13 AC 249 ms
28,400 KB
testcase_14 AC 244 ms
28,416 KB
testcase_15 AC 247 ms
28,400 KB
testcase_16 AC 37 ms
11,136 KB
testcase_17 AC 32 ms
10,496 KB
testcase_18 AC 65 ms
13,312 KB
testcase_19 AC 34 ms
10,752 KB
testcase_20 AC 80 ms
14,796 KB
testcase_21 AC 49 ms
12,288 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 45 ms
11,776 KB
testcase_24 AC 36 ms
11,008 KB
testcase_25 AC 39 ms
11,264 KB
testcase_26 AC 60 ms
13,592 KB
testcase_27 AC 72 ms
14,728 KB
testcase_28 AC 228 ms
30,700 KB
testcase_29 AC 96 ms
17,172 KB
testcase_30 AC 90 ms
16,568 KB
testcase_31 AC 210 ms
28,524 KB
testcase_32 AC 140 ms
21,512 KB
testcase_33 AC 180 ms
25,444 KB
testcase_34 AC 232 ms
30,384 KB
testcase_35 AC 171 ms
24,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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