結果

問題 No.1808 Fullgold Alchemist
ユーザー MasKoaTSMasKoaTS
提出日時 2021-09-16 19:01:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,400 KB
最終ジャッジ日時 2024-10-01 07:34:58
合計ジャッジ時間 6,531 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 65 ms
14,880 KB
testcase_06 AC 169 ms
27,616 KB
testcase_07 AC 97 ms
27,620 KB
testcase_08 AC 680 ms
33,272 KB
testcase_09 AC 207 ms
33,400 KB
testcase_10 AC 129 ms
33,148 KB
testcase_11 AC 200 ms
32,572 KB
testcase_12 AC 109 ms
28,572 KB
testcase_13 AC 240 ms
28,440 KB
testcase_14 AC 278 ms
29,088 KB
testcase_15 AC 200 ms
28,572 KB
testcase_16 AC 30 ms
11,136 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 51 ms
13,480 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 78 ms
14,872 KB
testcase_21 AC 40 ms
12,160 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 33 ms
11,904 KB
testcase_24 AC 31 ms
11,136 KB
testcase_25 AC 29 ms
11,264 KB
testcase_26 AC 74 ms
14,272 KB
testcase_27 AC 89 ms
14,756 KB
testcase_28 AC 263 ms
30,768 KB
testcase_29 AC 119 ms
17,332 KB
testcase_30 AC 92 ms
16,604 KB
testcase_31 AC 312 ms
28,556 KB
testcase_32 AC 152 ms
21,668 KB
testcase_33 AC 302 ms
25,604 KB
testcase_34 AC 239 ms
30,544 KB
testcase_35 AC 231 ms
24,280 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()

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