結果

問題 No.2217 Suffix+
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-17 21:59:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 943 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 92,096 KB
最終ジャッジ日時 2024-07-19 13:11:59
合計ジャッジ時間 9,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 35 ms
52,480 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 35 ms
52,096 KB
testcase_14 AC 64 ms
77,568 KB
testcase_15 AC 72 ms
77,708 KB
testcase_16 AC 84 ms
82,256 KB
testcase_17 AC 79 ms
79,812 KB
testcase_18 AC 76 ms
79,028 KB
testcase_19 AC 293 ms
86,912 KB
testcase_20 AC 270 ms
85,120 KB
testcase_21 AC 104 ms
75,520 KB
testcase_22 AC 273 ms
86,400 KB
testcase_23 AC 245 ms
82,688 KB
testcase_24 AC 191 ms
91,904 KB
testcase_25 AC 176 ms
91,776 KB
testcase_26 AC 156 ms
91,736 KB
testcase_27 AC 161 ms
91,492 KB
testcase_28 AC 176 ms
91,708 KB
testcase_29 AC 750 ms
91,776 KB
testcase_30 AC 755 ms
91,664 KB
testcase_31 AC 734 ms
91,648 KB
testcase_32 AC 725 ms
91,904 KB
testcase_33 AC 759 ms
92,040 KB
testcase_34 AC 172 ms
92,032 KB
testcase_35 AC 34 ms
52,096 KB
testcase_36 AC 943 ms
92,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def calc(x):
    count = 0
    left = k
    for i,a in enumerate(A,1):
        na = a+count
        if na >= x:
            continue
        need = (x-na+i-1)//i
        if need > left:
            return False
        count += need*i
        left -= need

    return True



l = 0
r = 10**20
while r > l + 1:
    m = (r+l)//2
    if calc(m):
        l = m
    else:
        r = m
print(l)
0