結果

問題 No.2217 Suffix+
ユーザー roarisroaris
提出日時 2023-02-18 03:06:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-07-19 17:14:32
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 37 ms
52,352 KB
testcase_14 AC 83 ms
67,456 KB
testcase_15 AC 81 ms
67,712 KB
testcase_16 AC 118 ms
74,088 KB
testcase_17 AC 100 ms
70,400 KB
testcase_18 AC 94 ms
69,504 KB
testcase_19 AC 219 ms
85,504 KB
testcase_20 AC 191 ms
84,608 KB
testcase_21 AC 65 ms
65,664 KB
testcase_22 AC 205 ms
85,696 KB
testcase_23 AC 166 ms
81,800 KB
testcase_24 AC 183 ms
87,700 KB
testcase_25 AC 189 ms
87,040 KB
testcase_26 AC 188 ms
87,040 KB
testcase_27 AC 190 ms
86,784 KB
testcase_28 AC 186 ms
87,936 KB
testcase_29 AC 220 ms
90,224 KB
testcase_30 AC 224 ms
90,112 KB
testcase_31 AC 227 ms
89,984 KB
testcase_32 AC 219 ms
90,112 KB
testcase_33 AC 225 ms
90,752 KB
testcase_34 AC 181 ms
86,528 KB
testcase_35 AC 38 ms
51,712 KB
testcase_36 AC 244 ms
90,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def judge(x):
    add = 0
    need = 0
    
    for i in range(N):
        lack = max(0, x-A[i]-add)
        c = (lack+i)//(i+1)
        need += c
        add += c*(i+1)
    
    return need<=K

N, K = map(int, input().split())
A = list(map(int, input().split()))
ok = -1
ng = 10**18

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

print(ok)
0