結果

問題 No.2217 Suffix+
ユーザー ShirotsumeShirotsume
提出日時 2023-02-14 07:13:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 92,416 KB
最終ジャッジ日時 2024-07-16 17:12:24
合計ジャッジ時間 5,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,264 KB
testcase_01 AC 39 ms
53,664 KB
testcase_02 AC 40 ms
55,116 KB
testcase_03 AC 44 ms
53,744 KB
testcase_04 AC 40 ms
55,200 KB
testcase_05 AC 42 ms
55,608 KB
testcase_06 AC 40 ms
53,628 KB
testcase_07 AC 40 ms
54,716 KB
testcase_08 AC 40 ms
55,236 KB
testcase_09 AC 41 ms
54,452 KB
testcase_10 AC 39 ms
54,128 KB
testcase_11 AC 39 ms
55,488 KB
testcase_12 AC 40 ms
54,412 KB
testcase_13 AC 40 ms
54,324 KB
testcase_14 AC 56 ms
70,068 KB
testcase_15 AC 56 ms
68,592 KB
testcase_16 AC 65 ms
75,628 KB
testcase_17 AC 60 ms
72,524 KB
testcase_18 AC 58 ms
71,972 KB
testcase_19 AC 132 ms
83,556 KB
testcase_20 AC 124 ms
80,680 KB
testcase_21 AC 63 ms
65,952 KB
testcase_22 AC 131 ms
82,968 KB
testcase_23 AC 114 ms
78,344 KB
testcase_24 AC 84 ms
89,492 KB
testcase_25 AC 82 ms
88,708 KB
testcase_26 AC 86 ms
89,108 KB
testcase_27 AC 88 ms
89,144 KB
testcase_28 AC 87 ms
89,204 KB
testcase_29 AC 181 ms
92,088 KB
testcase_30 AC 174 ms
92,296 KB
testcase_31 AC 172 ms
92,416 KB
testcase_32 AC 172 ms
92,300 KB
testcase_33 AC 175 ms
92,156 KB
testcase_34 AC 80 ms
90,580 KB
testcase_35 AC 40 ms
53,780 KB
testcase_36 AC 208 ms
92,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, k = mi()

a = li()

def check(x):
    foo = 0
    cnt = 0
    for i in range(n):
        if a[i] + foo < x:
            t = (x - a[i] - foo + i) // (i + 1)
            cnt += t
            foo += (i + 1) * t
    if cnt <= k:
        return True
    else:
        return False

ok = 0

ng = 10 ** 18

while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if check(mid):
        ok = mid
    else:
        ng = mid
print(ok)

0