結果

問題 No.2217 Suffix+
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-09 20:52:47
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 429 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 93,304 KB
最終ジャッジ日時 2024-06-10 12:26:30
合計ジャッジ時間 21,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,628 KB
testcase_01 AC 37 ms
52,848 KB
testcase_02 AC 38 ms
52,820 KB
testcase_03 AC 37 ms
52,696 KB
testcase_04 AC 39 ms
52,976 KB
testcase_05 AC 38 ms
52,684 KB
testcase_06 AC 37 ms
51,940 KB
testcase_07 AC 39 ms
52,420 KB
testcase_08 AC 37 ms
52,324 KB
testcase_09 AC 42 ms
52,216 KB
testcase_10 AC 40 ms
53,056 KB
testcase_11 AC 42 ms
53,276 KB
testcase_12 AC 40 ms
52,784 KB
testcase_13 AC 41 ms
53,296 KB
testcase_14 AC 155 ms
78,228 KB
testcase_15 AC 154 ms
78,236 KB
testcase_16 AC 251 ms
83,008 KB
testcase_17 AC 200 ms
80,312 KB
testcase_18 AC 180 ms
79,760 KB
testcase_19 AC 969 ms
87,412 KB
testcase_20 AC 907 ms
85,364 KB
testcase_21 AC 275 ms
75,680 KB
testcase_22 AC 917 ms
87,792 KB
testcase_23 AC 853 ms
83,008 KB
testcase_24 AC 436 ms
92,668 KB
testcase_25 AC 422 ms
92,424 KB
testcase_26 AC 421 ms
92,108 KB
testcase_27 AC 422 ms
92,176 KB
testcase_28 AC 421 ms
92,964 KB
testcase_29 AC 1,927 ms
92,408 KB
testcase_30 AC 1,928 ms
92,484 KB
testcase_31 AC 1,915 ms
92,172 KB
testcase_32 AC 1,922 ms
93,112 KB
testcase_33 AC 1,928 ms
93,304 KB
testcase_34 AC 409 ms
92,488 KB
testcase_35 AC 38 ms
53,552 KB
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = [-1] + list(map(int,input().split()))

OK = 0
NG = 10**28 + 1
while NG - OK >= 2:
    MID = (OK + NG) // 2
    count = 0
    now_plus = 0
    for i in range(1,N+1):
        if A[i] + now_plus < MID:
            k = -(-(MID - A[i] - now_plus) // i)
            count += k
            now_plus += i * k
    #print(MID,count)
    if count > K:
        NG = MID
    else:
        OK = MID
print(OK)
0