結果

問題 No.2217 Suffix+
ユーザー tonpe_yoshiharutonpe_yoshiharu
提出日時 2023-02-19 01:06:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 92,576 KB
最終ジャッジ日時 2024-07-20 06:54:07
合計ジャッジ時間 5,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 40 ms
52,524 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 37 ms
52,480 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 37 ms
52,480 KB
testcase_14 AC 53 ms
66,560 KB
testcase_15 AC 54 ms
67,584 KB
testcase_16 AC 61 ms
73,244 KB
testcase_17 AC 59 ms
70,400 KB
testcase_18 AC 57 ms
68,864 KB
testcase_19 AC 136 ms
81,956 KB
testcase_20 AC 133 ms
79,616 KB
testcase_21 AC 64 ms
64,384 KB
testcase_22 AC 134 ms
81,664 KB
testcase_23 AC 123 ms
76,160 KB
testcase_24 AC 88 ms
87,924 KB
testcase_25 AC 81 ms
87,168 KB
testcase_26 AC 87 ms
87,680 KB
testcase_27 AC 84 ms
87,808 KB
testcase_28 AC 82 ms
88,192 KB
testcase_29 AC 181 ms
92,544 KB
testcase_30 AC 183 ms
92,032 KB
testcase_31 AC 181 ms
92,360 KB
testcase_32 AC 186 ms
92,160 KB
testcase_33 AC 184 ms
92,576 KB
testcase_34 AC 80 ms
87,424 KB
testcase_35 AC 36 ms
52,224 KB
testcase_36 AC 225 ms
92,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


def is_ok(mi):
    s = 0
    l = 0
    for i in range(n):
        if a[i] + s < mi:
            m = math.ceil((mi - a[i] - s) / (i + 1))
            s += (i + 1) * m
            l += m
    return l <= k


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

ok, ng = 0, 10 ** 15 + 1
while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if is_ok(mid):
        ok = mid
    else:
        ng = mid

print(ok)
0