結果

問題 No.2217 Suffix+
ユーザー hiryuNhiryuN
提出日時 2023-02-17 22:41:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-07-19 13:52:21
合計ジャッジ時間 4,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 39 ms
51,328 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 53 ms
64,512 KB
testcase_15 AC 54 ms
64,896 KB
testcase_16 AC 60 ms
71,936 KB
testcase_17 AC 56 ms
68,224 KB
testcase_18 AC 55 ms
66,432 KB
testcase_19 AC 96 ms
78,336 KB
testcase_20 AC 88 ms
76,032 KB
testcase_21 AC 54 ms
60,800 KB
testcase_22 AC 93 ms
77,440 KB
testcase_23 AC 83 ms
72,320 KB
testcase_24 AC 81 ms
86,272 KB
testcase_25 AC 78 ms
85,504 KB
testcase_26 AC 81 ms
86,016 KB
testcase_27 AC 80 ms
85,888 KB
testcase_28 AC 81 ms
86,528 KB
testcase_29 AC 158 ms
91,520 KB
testcase_30 AC 157 ms
91,648 KB
testcase_31 AC 156 ms
91,520 KB
testcase_32 AC 159 ms
91,520 KB
testcase_33 AC 158 ms
91,264 KB
testcase_34 AC 77 ms
86,016 KB
testcase_35 AC 40 ms
51,840 KB
testcase_36 AC 176 ms
91,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
A=list(map(int,input().split()))
ans=0
def make(ans):
    pre=0
    key=k
    for q in range(n):
        if pre+A[q]<ans:
            div=-(-(ans-pre-A[q])//(q+1))
            key-=div
            pre+=div*(q+1)
            if key<0:
                return 0
    return 1
for i in range(50,-1,-1):
    ans+=2**i
    if not make(ans):
        ans-=2**i
print(ans)
    
        
        
0