結果

問題 No.1808 Fullgold Alchemist
ユーザー MasKoaTSMasKoaTS
提出日時 2021-10-22 18:21:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 114,320 KB
最終ジャッジ日時 2024-10-01 07:36:47
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,248 KB
testcase_01 AC 35 ms
52,320 KB
testcase_02 AC 35 ms
52,808 KB
testcase_03 AC 35 ms
52,340 KB
testcase_04 AC 35 ms
52,440 KB
testcase_05 AC 94 ms
114,320 KB
testcase_06 AC 102 ms
110,448 KB
testcase_07 AC 101 ms
110,348 KB
testcase_08 AC 118 ms
112,088 KB
testcase_09 AC 117 ms
112,268 KB
testcase_10 AC 118 ms
112,084 KB
testcase_11 AC 117 ms
111,780 KB
testcase_12 AC 104 ms
113,252 KB
testcase_13 AC 104 ms
113,592 KB
testcase_14 AC 103 ms
113,488 KB
testcase_15 AC 105 ms
112,940 KB
testcase_16 AC 44 ms
61,860 KB
testcase_17 AC 37 ms
52,484 KB
testcase_18 AC 51 ms
69,892 KB
testcase_19 AC 42 ms
59,672 KB
testcase_20 AC 56 ms
75,556 KB
testcase_21 AC 46 ms
65,568 KB
testcase_22 AC 36 ms
52,492 KB
testcase_23 AC 44 ms
63,664 KB
testcase_24 AC 42 ms
60,376 KB
testcase_25 AC 45 ms
60,944 KB
testcase_26 AC 48 ms
68,456 KB
testcase_27 AC 52 ms
72,312 KB
testcase_28 AC 100 ms
103,548 KB
testcase_29 AC 61 ms
79,968 KB
testcase_30 AC 58 ms
77,204 KB
testcase_31 AC 93 ms
103,984 KB
testcase_32 AC 75 ms
92,436 KB
testcase_33 AC 90 ms
105,164 KB
testcase_34 AC 102 ms
103,748 KB
testcase_35 AC 84 ms
100,736 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