結果

問題 No.2217 Suffix+
ユーザー chineristACchineristAC
提出日時 2023-02-17 23:16:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 93,392 KB
最終ジャッジ日時 2024-07-19 14:27:00
合計ジャッジ時間 4,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,304 KB
testcase_01 AC 42 ms
55,824 KB
testcase_02 AC 46 ms
57,592 KB
testcase_03 AC 45 ms
56,852 KB
testcase_04 AC 44 ms
57,612 KB
testcase_05 AC 42 ms
57,252 KB
testcase_06 AC 41 ms
57,520 KB
testcase_07 AC 41 ms
56,860 KB
testcase_08 AC 41 ms
56,692 KB
testcase_09 AC 41 ms
56,600 KB
testcase_10 AC 44 ms
56,300 KB
testcase_11 AC 47 ms
56,164 KB
testcase_12 AC 43 ms
56,508 KB
testcase_13 AC 42 ms
56,344 KB
testcase_14 AC 57 ms
71,556 KB
testcase_15 AC 55 ms
70,948 KB
testcase_16 AC 63 ms
77,788 KB
testcase_17 AC 60 ms
74,064 KB
testcase_18 AC 59 ms
73,796 KB
testcase_19 AC 127 ms
85,580 KB
testcase_20 AC 122 ms
83,012 KB
testcase_21 AC 63 ms
68,352 KB
testcase_22 AC 125 ms
84,124 KB
testcase_23 AC 115 ms
80,652 KB
testcase_24 AC 90 ms
91,456 KB
testcase_25 AC 85 ms
90,904 KB
testcase_26 AC 88 ms
90,892 KB
testcase_27 AC 87 ms
90,928 KB
testcase_28 AC 91 ms
92,972 KB
testcase_29 AC 173 ms
93,032 KB
testcase_30 AC 174 ms
93,312 KB
testcase_31 AC 172 ms
93,392 KB
testcase_32 AC 175 ms
93,040 KB
testcase_33 AC 174 ms
92,988 KB
testcase_34 AC 83 ms
90,792 KB
testcase_35 AC 41 ms
57,092 KB
testcase_36 AC 179 ms
93,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,K = mi()
A = li()

def cond(x):
    add = 0
    res = 0
    for i in range(N):
        if A[i]+add < x:
            need = (x-A[i]-add+i)//(i+1)
            res += need
            add += need * (i+1)
    
    return res <= K


ok = 0
ng = 10**17
while ng-ok>1:
    mid = (ok+ng)//2
    if cond(mid):
        ok = mid
    else:
        ng = mid

print(ok)


0