結果

問題 No.2217 Suffix+
ユーザー lloyzlloyz
提出日時 2023-02-17 23:29:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 1,315 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 90,284 KB
最終ジャッジ日時 2024-07-19 14:41:25
合計ジャッジ時間 4,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,048 KB
testcase_01 AC 39 ms
53,100 KB
testcase_02 AC 39 ms
53,084 KB
testcase_03 AC 40 ms
52,688 KB
testcase_04 AC 36 ms
52,416 KB
testcase_05 AC 40 ms
52,360 KB
testcase_06 AC 35 ms
53,196 KB
testcase_07 AC 38 ms
53,680 KB
testcase_08 AC 37 ms
53,824 KB
testcase_09 AC 38 ms
52,532 KB
testcase_10 AC 36 ms
53,076 KB
testcase_11 AC 39 ms
51,880 KB
testcase_12 AC 40 ms
52,964 KB
testcase_13 AC 36 ms
52,704 KB
testcase_14 AC 52 ms
68,336 KB
testcase_15 AC 53 ms
68,436 KB
testcase_16 AC 64 ms
74,408 KB
testcase_17 AC 58 ms
71,400 KB
testcase_18 AC 57 ms
68,828 KB
testcase_19 AC 123 ms
82,580 KB
testcase_20 AC 116 ms
80,700 KB
testcase_21 AC 59 ms
65,420 KB
testcase_22 AC 121 ms
82,572 KB
testcase_23 AC 110 ms
77,056 KB
testcase_24 AC 78 ms
88,460 KB
testcase_25 AC 76 ms
87,584 KB
testcase_26 AC 78 ms
89,328 KB
testcase_27 AC 78 ms
88,576 KB
testcase_28 AC 77 ms
88,324 KB
testcase_29 AC 148 ms
89,864 KB
testcase_30 AC 149 ms
90,108 KB
testcase_31 AC 151 ms
89,736 KB
testcase_32 AC 153 ms
90,284 KB
testcase_33 AC 156 ms
90,044 KB
testcase_34 AC 83 ms
89,232 KB
testcase_35 AC 37 ms
52,436 KB
testcase_36 AC 178 ms
89,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

left, right = -1, 10**15
while right - left > 1:
    mid = (left + right) // 2
    res = 0
    cnt = 0
    for i in range(n):
        ai = A[i] + res
        if ai >= mid:
            continue
        tmp = (mid - ai + i) // (i + 1)
        cnt += tmp
        res += tmp * (i + 1)
    if cnt <= k:
        left = mid
    else:
        right = mid
print(left)
0