結果

問題 No.2217 Suffix+
ユーザー ntudantuda
提出日時 2023-02-22 21:24:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 92,336 KB
最終ジャッジ日時 2024-07-22 22:06:16
合計ジャッジ時間 5,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,944 KB
testcase_01 AC 38 ms
52,016 KB
testcase_02 AC 38 ms
53,268 KB
testcase_03 AC 42 ms
53,020 KB
testcase_04 AC 37 ms
52,644 KB
testcase_05 AC 37 ms
52,292 KB
testcase_06 AC 37 ms
52,424 KB
testcase_07 AC 37 ms
52,820 KB
testcase_08 AC 36 ms
53,104 KB
testcase_09 AC 37 ms
52,292 KB
testcase_10 AC 36 ms
53,184 KB
testcase_11 AC 38 ms
52,344 KB
testcase_12 AC 38 ms
52,756 KB
testcase_13 AC 36 ms
52,328 KB
testcase_14 AC 50 ms
66,720 KB
testcase_15 AC 52 ms
66,764 KB
testcase_16 AC 59 ms
74,184 KB
testcase_17 AC 55 ms
69,984 KB
testcase_18 AC 54 ms
68,296 KB
testcase_19 AC 114 ms
86,940 KB
testcase_20 AC 113 ms
84,968 KB
testcase_21 AC 57 ms
65,216 KB
testcase_22 AC 118 ms
86,756 KB
testcase_23 AC 107 ms
82,924 KB
testcase_24 AC 79 ms
88,152 KB
testcase_25 AC 78 ms
86,784 KB
testcase_26 AC 75 ms
87,668 KB
testcase_27 AC 84 ms
88,200 KB
testcase_28 AC 76 ms
86,824 KB
testcase_29 AC 177 ms
91,728 KB
testcase_30 AC 176 ms
92,336 KB
testcase_31 AC 179 ms
91,964 KB
testcase_32 AC 178 ms
91,668 KB
testcase_33 AC 179 ms
91,940 KB
testcase_34 AC 82 ms
87,468 KB
testcase_35 AC 37 ms
52,524 KB
testcase_36 AC 184 ms
91,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))

def check(x):
    a = 0
    b = 0
    for i in range(N):
        tmp = A[i] + b - x
        if tmp < 0:
            tmp2 = - (tmp // (i + 1))
            a += tmp2
            b += tmp2 * (i + 1)
        if a > K:
            return False
    return True

lb = 0
ub = A[0] + K + 1
while ub - lb > 1:
    mid = (ub + lb) // 2
    if check(mid):
        lb = mid
    else:
        ub = mid
print(lb)
0