結果

問題 No.2217 Suffix+
ユーザー lllllll88938494lllllll88938494
提出日時 2023-03-30 21:45:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 92,200 KB
最終ジャッジ日時 2024-09-22 07:01:14
合計ジャッジ時間 4,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,460 KB
testcase_01 AC 36 ms
53,168 KB
testcase_02 AC 37 ms
52,464 KB
testcase_03 AC 37 ms
53,164 KB
testcase_04 AC 36 ms
52,688 KB
testcase_05 AC 37 ms
53,084 KB
testcase_06 AC 37 ms
52,892 KB
testcase_07 AC 37 ms
52,760 KB
testcase_08 AC 37 ms
53,364 KB
testcase_09 AC 37 ms
53,216 KB
testcase_10 AC 37 ms
54,476 KB
testcase_11 AC 37 ms
52,316 KB
testcase_12 AC 37 ms
52,936 KB
testcase_13 AC 37 ms
52,736 KB
testcase_14 AC 51 ms
67,112 KB
testcase_15 AC 54 ms
67,636 KB
testcase_16 AC 59 ms
73,716 KB
testcase_17 AC 58 ms
71,688 KB
testcase_18 AC 53 ms
68,572 KB
testcase_19 AC 142 ms
82,820 KB
testcase_20 AC 138 ms
81,088 KB
testcase_21 AC 66 ms
66,100 KB
testcase_22 AC 142 ms
83,556 KB
testcase_23 AC 129 ms
78,308 KB
testcase_24 AC 78 ms
89,044 KB
testcase_25 AC 76 ms
87,112 KB
testcase_26 AC 77 ms
89,460 KB
testcase_27 AC 77 ms
87,524 KB
testcase_28 AC 78 ms
88,048 KB
testcase_29 AC 202 ms
91,796 KB
testcase_30 AC 201 ms
92,032 KB
testcase_31 AC 201 ms
91,772 KB
testcase_32 AC 199 ms
92,128 KB
testcase_33 AC 204 ms
92,200 KB
testcase_34 AC 75 ms
87,340 KB
testcase_35 AC 37 ms
53,944 KB
testcase_36 AC 269 ms
91,768 KB
権限があれば一括ダウンロードができます

ソースコード

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