結果

問題 No.2217 Suffix+
ユーザー meruuu61779999meruuu61779999
提出日時 2023-02-17 21:39:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,544 KB
最終ジャッジ日時 2024-07-19 12:48:11
合計ジャッジ時間 4,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 AC 48 ms
65,024 KB
testcase_15 AC 48 ms
65,792 KB
testcase_16 AC 56 ms
72,064 KB
testcase_17 AC 51 ms
68,300 KB
testcase_18 AC 50 ms
67,124 KB
testcase_19 AC 106 ms
85,760 KB
testcase_20 AC 98 ms
84,672 KB
testcase_21 AC 53 ms
62,720 KB
testcase_22 AC 104 ms
85,916 KB
testcase_23 AC 97 ms
81,920 KB
testcase_24 AC 76 ms
84,992 KB
testcase_25 AC 75 ms
84,992 KB
testcase_26 AC 84 ms
84,736 KB
testcase_27 AC 75 ms
85,248 KB
testcase_28 AC 73 ms
85,504 KB
testcase_29 AC 192 ms
90,496 KB
testcase_30 AC 194 ms
90,240 KB
testcase_31 AC 192 ms
90,336 KB
testcase_32 AC 192 ms
90,544 KB
testcase_33 AC 200 ms
90,240 KB
testcase_34 AC 74 ms
85,120 KB
testcase_35 AC 38 ms
52,096 KB
testcase_36 AC 228 ms
90,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

inputs = sys.stdin.readline

"""再帰関数のときセット
sys.setrecursionlimit(10**7)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
"""


def main():
    N, K = map(int, inputs().split())
    A = list(map(int, inputs().split()))

    def judge(m):
        cnt = 0
        power = 0
        for i, a in enumerate(A):
            if cnt > K:
                break
            now_val = a + power
            if now_val < m:
                pl_cnt = (m - now_val) // (i + 1)
                if (m - now_val) % (i + 1):
                    pl_cnt += 1
                cnt += pl_cnt
                power += pl_cnt * (i + 1)
        return cnt <= K

    left, right = 0, 10 ** 15
    while right - left >= 2:
        mid = (left + right) // 2
        if judge(mid):
            left = mid
        else:
            right = mid - 1
    if judge(right):
        print(right)
    else:
        print(left)


if __name__ == '__main__':
    main()
0