結果

問題 No.2217 Suffix+
ユーザー shobonvipshobonvip
提出日時 2023-02-17 21:30:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 137,216 KB
最終ジャッジ日時 2024-07-19 12:32:39
合計ジャッジ時間 5,122 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 43 ms
51,712 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
51,456 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 36 ms
51,712 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 35 ms
51,456 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 66 ms
79,104 KB
testcase_15 AC 67 ms
79,360 KB
testcase_16 AC 92 ms
99,200 KB
testcase_17 AC 85 ms
88,832 KB
testcase_18 AC 75 ms
83,456 KB
testcase_19 AC 173 ms
119,424 KB
testcase_20 AC 166 ms
111,616 KB
testcase_21 AC 69 ms
69,120 KB
testcase_22 AC 171 ms
116,608 KB
testcase_23 AC 153 ms
102,400 KB
testcase_24 AC 124 ms
134,528 KB
testcase_25 AC 129 ms
134,400 KB
testcase_26 AC 138 ms
134,784 KB
testcase_27 AC 142 ms
135,168 KB
testcase_28 AC 127 ms
135,424 KB
testcase_29 AC 216 ms
136,832 KB
testcase_30 AC 209 ms
136,576 KB
testcase_31 AC 209 ms
136,448 KB
testcase_32 AC 217 ms
136,704 KB
testcase_33 AC 211 ms
136,576 KB
testcase_34 AC 137 ms
134,528 KB
testcase_35 AC 40 ms
51,840 KB
testcase_36 AC 247 ms
137,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int,input().split())
a = list(map(int,input().split()))

suki = 10 ** 18
kirai = 0
while suki - kirai > 1:
	targ = (suki + kirai) // 2
	tai = 0
	rrs = 0
	b = a[::]
	for i in range(n):
		b[i] += tai
		if b[i] < targ:
			g = (targ - b[i] + i) // (i + 1)
			tai += g * (i + 1)
			rrs += g
	if rrs > k:
		suki = targ
	else:
		kirai = targ

print(kirai)
0