結果

問題 No.1808 Fullgold Alchemist
ユーザー MasKoaTSMasKoaTS
提出日時 2022-01-12 21:46:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,748 KB
実行使用メモリ 117,120 KB
最終ジャッジ日時 2024-11-15 14:00:50
合計ジャッジ時間 5,220 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,088 KB
testcase_05 AC 100 ms
117,120 KB
testcase_06 AC 103 ms
110,248 KB
testcase_07 AC 99 ms
110,236 KB
testcase_08 AC 118 ms
112,348 KB
testcase_09 AC 119 ms
112,068 KB
testcase_10 AC 118 ms
112,352 KB
testcase_11 AC 117 ms
112,724 KB
testcase_12 AC 107 ms
113,292 KB
testcase_13 AC 104 ms
113,536 KB
testcase_14 AC 106 ms
113,364 KB
testcase_15 AC 105 ms
113,284 KB
testcase_16 AC 47 ms
62,080 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 55 ms
70,656 KB
testcase_19 AC 46 ms
60,800 KB
testcase_20 AC 59 ms
75,520 KB
testcase_21 AC 50 ms
65,536 KB
testcase_22 AC 39 ms
51,840 KB
testcase_23 AC 49 ms
63,744 KB
testcase_24 AC 46 ms
61,312 KB
testcase_25 AC 48 ms
62,080 KB
testcase_26 AC 54 ms
69,632 KB
testcase_27 AC 57 ms
72,832 KB
testcase_28 AC 102 ms
103,936 KB
testcase_29 AC 64 ms
81,152 KB
testcase_30 AC 63 ms
78,336 KB
testcase_31 AC 96 ms
104,324 KB
testcase_32 AC 78 ms
94,372 KB
testcase_33 AC 93 ms
106,108 KB
testcase_34 AC 104 ms
103,752 KB
testcase_35 AC 88 ms
102,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

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

if not(1 <= n <= 2 * 10 ** 5 and 1 <= m <= 10 ** 9):
    exit(1)
if any(not(0 <= i <= 10 ** 9) for i in a):
    exit(1)

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

print(ans)
0