結果

問題 No.1808 Fullgold Alchemist
ユーザー MasKoaTSMasKoaTS
提出日時 2021-09-28 20:58:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 113,792 KB
最終ジャッジ日時 2024-10-01 07:36:32
合計ジャッジ時間 4,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 86 ms
113,792 KB
testcase_06 AC 93 ms
110,464 KB
testcase_07 AC 90 ms
110,592 KB
testcase_08 AC 118 ms
112,412 KB
testcase_09 AC 108 ms
112,076 KB
testcase_10 AC 105 ms
112,144 KB
testcase_11 AC 106 ms
111,776 KB
testcase_12 AC 93 ms
113,280 KB
testcase_13 AC 99 ms
113,664 KB
testcase_14 AC 99 ms
113,664 KB
testcase_15 AC 99 ms
113,408 KB
testcase_16 AC 43 ms
60,672 KB
testcase_17 AC 36 ms
52,352 KB
testcase_18 AC 50 ms
69,504 KB
testcase_19 AC 42 ms
60,032 KB
testcase_20 AC 54 ms
73,984 KB
testcase_21 AC 46 ms
64,000 KB
testcase_22 AC 36 ms
52,352 KB
testcase_23 AC 46 ms
62,848 KB
testcase_24 AC 43 ms
60,416 KB
testcase_25 AC 42 ms
61,056 KB
testcase_26 AC 51 ms
67,840 KB
testcase_27 AC 54 ms
71,296 KB
testcase_28 AC 97 ms
103,892 KB
testcase_29 AC 61 ms
79,616 KB
testcase_30 AC 58 ms
77,120 KB
testcase_31 AC 94 ms
104,448 KB
testcase_32 AC 75 ms
92,032 KB
testcase_33 AC 90 ms
105,488 KB
testcase_34 AC 100 ms
103,484 KB
testcase_35 AC 84 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

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

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