結果

問題 No.2217 Suffix+
ユーザー KudeKude
提出日時 2023-02-17 21:28:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 92,452 KB
最終ジャッジ日時 2024-07-19 12:30:11
合計ジャッジ時間 4,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 35 ms
51,584 KB
testcase_12 AC 36 ms
51,968 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 51 ms
66,816 KB
testcase_15 AC 50 ms
67,200 KB
testcase_16 AC 60 ms
74,240 KB
testcase_17 AC 55 ms
69,888 KB
testcase_18 AC 54 ms
68,608 KB
testcase_19 AC 109 ms
82,432 KB
testcase_20 AC 104 ms
80,256 KB
testcase_21 AC 57 ms
65,152 KB
testcase_22 AC 108 ms
82,304 KB
testcase_23 AC 97 ms
76,928 KB
testcase_24 AC 82 ms
88,704 KB
testcase_25 AC 81 ms
88,320 KB
testcase_26 AC 83 ms
88,448 KB
testcase_27 AC 84 ms
88,192 KB
testcase_28 AC 81 ms
88,448 KB
testcase_29 AC 161 ms
92,452 KB
testcase_30 AC 161 ms
92,032 KB
testcase_31 AC 168 ms
92,048 KB
testcase_32 AC 165 ms
92,212 KB
testcase_33 AC 168 ms
91,900 KB
testcase_34 AC 86 ms
88,960 KB
testcase_35 AC 36 ms
52,096 KB
testcase_36 AC 180 ms
90,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
l = -1
r = a[0] + k + 1
while r - l > 1:
    c = (l + r) // 2
    cnt = 0
    add = 0
    for i, x in enumerate(a, 1):
        x += add
        if c > x:
            v = (c - x + i - 1) // i
            cnt += v
            add += v * i
    if cnt <= k:
        l = c
    else:
        r = c
print(l)
0