結果

問題 No.1808 Fullgold Alchemist
ユーザー MasKoaTSMasKoaTS
提出日時 2021-09-16 20:21:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 715 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,716 KB
最終ジャッジ日時 2024-10-01 07:35:12
合計ジャッジ時間 6,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 77 ms
14,184 KB
testcase_06 AC 185 ms
26,476 KB
testcase_07 AC 102 ms
26,476 KB
testcase_08 AC 715 ms
32,716 KB
testcase_09 AC 217 ms
32,716 KB
testcase_10 AC 139 ms
32,640 KB
testcase_11 AC 207 ms
32,656 KB
testcase_12 AC 117 ms
28,600 KB
testcase_13 AC 263 ms
28,592 KB
testcase_14 AC 315 ms
28,604 KB
testcase_15 AC 215 ms
28,592 KB
testcase_16 AC 31 ms
11,392 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 54 ms
13,516 KB
testcase_19 AC 28 ms
11,008 KB
testcase_20 AC 83 ms
14,988 KB
testcase_21 AC 41 ms
12,416 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 33 ms
11,776 KB
testcase_24 AC 31 ms
11,136 KB
testcase_25 AC 31 ms
11,264 KB
testcase_26 AC 75 ms
14,424 KB
testcase_27 AC 88 ms
14,996 KB
testcase_28 AC 291 ms
30,888 KB
testcase_29 AC 111 ms
17,412 KB
testcase_30 AC 97 ms
16,636 KB
testcase_31 AC 327 ms
29,292 KB
testcase_32 AC 162 ms
21,700 KB
testcase_33 AC 315 ms
26,120 KB
testcase_34 AC 251 ms
31,184 KB
testcase_35 AC 243 ms
24,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n,m = map(int,input().split())
a = list(map(int,input().split()))
s = list(itertools.accumulate(a))
if(len(a) != n):
	exit()
if not(1 <= n <= 2*(10**5) and 1 <= m <= 10**9):
	exit()
if not(all(0 <= i <= 10**9 for i in a)):
	exit()

def func(k):
	t = m * k
	res = True
	for i in s:
		if(i < t):
			res = False
			break
		t += m * k
	return res

ok = 0
ng = 10**9+1
while(ng-ok > 1):
	k = (ok+ng)//2
	if(func(k)):
		ok = k
	else:
		ng = k
print(ok)
0