結果

問題 No.2217 Suffix+
ユーザー FromBooskaFromBooska
提出日時 2023-04-27 16:17:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-11-16 22:05:30
合計ジャッジ時間 9,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 42 ms
52,352 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 88 ms
77,952 KB
testcase_15 AC 88 ms
78,464 KB
testcase_16 AC 114 ms
82,560 KB
testcase_17 AC 100 ms
80,256 KB
testcase_18 AC 94 ms
78,848 KB
testcase_19 AC 322 ms
87,040 KB
testcase_20 AC 313 ms
85,632 KB
testcase_21 AC 121 ms
75,904 KB
testcase_22 AC 316 ms
86,656 KB
testcase_23 AC 297 ms
83,072 KB
testcase_24 AC 157 ms
92,032 KB
testcase_25 AC 157 ms
91,776 KB
testcase_26 AC 156 ms
91,648 KB
testcase_27 AC 159 ms
91,520 KB
testcase_28 AC 159 ms
91,520 KB
testcase_29 AC 527 ms
91,648 KB
testcase_30 AC 535 ms
91,776 KB
testcase_31 AC 521 ms
91,904 KB
testcase_32 AC 522 ms
92,160 KB
testcase_33 AC 528 ms
91,648 KB
testcase_34 AC 142 ms
92,160 KB
testcase_35 AC 40 ms
52,352 KB
testcase_36 AC 585 ms
91,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 最低値の目標まで何回で到達できるか、二分探索、でどうか

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

#X = 5
from math import ceil

def check(X):
    count = 0
    added = 0
    for i in range(N):
        num = A[i]
        if num + added < X:
            subcount = ceil((X-num-added)/(i+1))
            count += subcount
            added += (i+1)*subcount
    #print(count)
    if count <= K:
        return 1
    else: 
        return 0
    
#for x in range(20):
#    print(x, check(x))

OK = 0
NG = 10**20
while NG-OK>1:
    mid = (OK+NG)//2
    if check(mid) == 1:
        OK = mid
    else:
        NG = mid
print(OK)



0