結果

問題 No.2217 Suffix+
ユーザー titiatitia
提出日時 2023-02-17 22:25:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 387 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,152 KB
最終ジャッジ日時 2024-07-19 13:35:12
合計ジャッジ時間 23,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,696 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 349 ms
13,508 KB
testcase_15 AC 351 ms
13,348 KB
testcase_16 AC 705 ms
16,552 KB
testcase_17 AC 511 ms
14,832 KB
testcase_18 AC 411 ms
14,044 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 556 ms
11,776 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,240 ms
22,080 KB
testcase_25 AC 1,232 ms
22,208 KB
testcase_26 AC 1,271 ms
21,956 KB
testcase_27 AC 1,269 ms
22,076 KB
testcase_28 AC 1,289 ms
22,208 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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