結果

問題 No.2217 Suffix+
ユーザー もちふわゆるゆるもちふわゆるゆる
提出日時 2023-02-18 23:42:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 92,288 KB
最終ジャッジ日時 2024-07-20 06:05:31
合計ジャッジ時間 4,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 39 ms
52,480 KB
testcase_13 AC 42 ms
52,480 KB
testcase_14 AC 64 ms
65,920 KB
testcase_15 AC 60 ms
67,456 KB
testcase_16 AC 69 ms
73,088 KB
testcase_17 AC 67 ms
70,272 KB
testcase_18 AC 58 ms
68,608 KB
testcase_19 AC 129 ms
81,408 KB
testcase_20 AC 122 ms
78,720 KB
testcase_21 AC 66 ms
63,872 KB
testcase_22 AC 129 ms
80,256 KB
testcase_23 AC 113 ms
75,392 KB
testcase_24 AC 86 ms
87,296 KB
testcase_25 AC 89 ms
87,296 KB
testcase_26 AC 90 ms
87,168 KB
testcase_27 AC 89 ms
87,296 KB
testcase_28 AC 91 ms
87,424 KB
testcase_29 AC 171 ms
91,876 KB
testcase_30 AC 166 ms
92,008 KB
testcase_31 AC 164 ms
92,160 KB
testcase_32 AC 168 ms
92,288 KB
testcase_33 AC 159 ms
91,904 KB
testcase_34 AC 85 ms
87,168 KB
testcase_35 AC 38 ms
52,480 KB
testcase_36 AC 196 ms
91,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
input = lambda: sys.stdin.readline()[:-1]
def MI(): return map(int, input().split())
inf = 10**18

n,k = MI()
a = list(MI())

def isok(mid):
    now = 0
    cnt = 0
    for left in range(n):
        mn = a[left] + now
        if mn<mid:
            tmp = -(-(mid-mn)//(left+1))
            cnt += tmp
            now += (left+1)*tmp
    
    if cnt<=k:
        return True
    else: return False

l,r = -1, 2*10**15
while abs(l-r)>1:
    mid = (l+r)//2
    if isok(mid): l = mid
    else: r = mid
print(l)
0