結果

問題 No.2217 Suffix+
ユーザー titiatitia
提出日時 2023-02-17 22:26:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 89,272 KB
最終ジャッジ日時 2024-07-19 13:36:06
合計ジャッジ時間 4,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,852 KB
testcase_01 AC 37 ms
52,504 KB
testcase_02 AC 37 ms
52,852 KB
testcase_03 AC 38 ms
51,752 KB
testcase_04 AC 37 ms
52,080 KB
testcase_05 AC 36 ms
52,708 KB
testcase_06 AC 37 ms
53,788 KB
testcase_07 AC 35 ms
52,396 KB
testcase_08 AC 33 ms
52,956 KB
testcase_09 AC 35 ms
53,012 KB
testcase_10 AC 34 ms
51,620 KB
testcase_11 AC 37 ms
52,292 KB
testcase_12 AC 37 ms
53,292 KB
testcase_13 AC 36 ms
52,752 KB
testcase_14 AC 52 ms
67,740 KB
testcase_15 AC 52 ms
67,788 KB
testcase_16 AC 62 ms
73,440 KB
testcase_17 AC 58 ms
70,704 KB
testcase_18 AC 56 ms
69,372 KB
testcase_19 AC 143 ms
82,032 KB
testcase_20 AC 133 ms
80,856 KB
testcase_21 AC 60 ms
66,020 KB
testcase_22 AC 136 ms
81,768 KB
testcase_23 AC 121 ms
76,684 KB
testcase_24 AC 85 ms
87,472 KB
testcase_25 AC 82 ms
87,256 KB
testcase_26 AC 81 ms
88,380 KB
testcase_27 AC 84 ms
86,684 KB
testcase_28 AC 86 ms
88,196 KB
testcase_29 AC 174 ms
88,748 KB
testcase_30 AC 174 ms
88,812 KB
testcase_31 AC 180 ms
88,724 KB
testcase_32 AC 181 ms
89,272 KB
testcase_33 AC 179 ms
88,664 KB
testcase_34 AC 80 ms
87,332 KB
testcase_35 AC 35 ms
52,332 KB
testcase_36 AC 205 ms
89,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K = map(int,input().split())
A = list(map(int,input().split()))

OK=0
NG=10**18

while NG>OK+1:
    mid=(OK+NG)//2
    c=0
    p=0

    for i in range(N):
        if A[i]+c<mid:
            u=mid-A[i]-c
            x=i+1

            k=(u+x-1)//x
            p+=k
            c+=k*x
    if p<=K:
        OK=mid
    else:
        NG=mid
print(OK)
0