結果

問題 No.2217 Suffix+
ユーザー lllllll88938494lllllll88938494
提出日時 2023-03-30 21:44:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 521 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,476 KB
最終ジャッジ日時 2024-09-22 07:01:07
合計ジャッジ時間 27,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 180 ms
13,672 KB
testcase_15 AC 179 ms
13,496 KB
testcase_16 AC 340 ms
16,704 KB
testcase_17 AC 245 ms
15,160 KB
testcase_18 AC 210 ms
14,232 KB
testcase_19 AC 1,134 ms
19,644 KB
testcase_20 AC 1,109 ms
18,156 KB
testcase_21 AC 294 ms
11,904 KB
testcase_22 AC 1,150 ms
18,876 KB
testcase_23 AC 1,014 ms
16,896 KB
testcase_24 AC 581 ms
22,340 KB
testcase_25 AC 587 ms
22,344 KB
testcase_26 AC 587 ms
22,344 KB
testcase_27 AC 592 ms
22,344 KB
testcase_28 AC 591 ms
22,340 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 600 ms
21,676 KB
testcase_35 AC 29 ms
10,752 KB
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def  cal(x):
    cnt = 0
    now = 0
    for i in range(n):
        if now + a[i] < x:
            t=now + a[i]
            v,m=divmod(x-t,i+1)
            if m>0:
                v+=1
            cnt += v
            now += v * (i+1)

    # print(cnt,x)
    if cnt <= k:
        return True
    else:
        return False

ok = 0
ng = 10 ** 15
while ng - ok > 1:

    mid = (ng+ok)//2
    if cal(mid):
        ok = mid
    else:
        ng = mid

print(ok)
0