結果

問題 No.2217 Suffix+
ユーザー HydruHydru
提出日時 2023-02-17 22:35:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-07-19 13:46:55
合計ジャッジ時間 3,599 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,248 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 35 ms
51,584 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 46 ms
65,152 KB
testcase_15 AC 47 ms
65,280 KB
testcase_16 AC 53 ms
72,064 KB
testcase_17 AC 49 ms
68,224 KB
testcase_18 AC 47 ms
66,432 KB
testcase_19 AC 73 ms
85,612 KB
testcase_20 AC 69 ms
82,700 KB
testcase_21 AC 49 ms
63,360 KB
testcase_22 AC 70 ms
85,248 KB
testcase_23 AC 65 ms
78,592 KB
testcase_24 AC 69 ms
85,632 KB
testcase_25 AC 71 ms
86,528 KB
testcase_26 AC 70 ms
86,272 KB
testcase_27 AC 69 ms
85,760 KB
testcase_28 AC 69 ms
85,632 KB
testcase_29 AC 80 ms
95,616 KB
testcase_30 AC 81 ms
95,360 KB
testcase_31 AC 82 ms
95,616 KB
testcase_32 AC 82 ms
95,104 KB
testcase_33 AC 82 ms
95,232 KB
testcase_34 AC 70 ms
86,784 KB
testcase_35 AC 36 ms
51,968 KB
testcase_36 AC 80 ms
95,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())

A=list(map(int,input().split()))
if k==0:
    print(min(A))
    exit()

min_num=2**61-1
min_ind=[]
for i in range(n):
    if min_num>A[i]:
        min_ind.append(i)
        min_num=A[i]

ans=A[min_ind[-1]]

for j in range(len(min_ind)-1,-1,-1):
    if j==0:
        ans+=k
        break
    n_ind=min_ind[j]
    p_ind=min_ind[j-1]
    
    y=(A[p_ind]-ans)//(n_ind+1)
    if y>=k:
        ans+=k*(n_ind+1)
        break
    k-=y
    ans+=y*(n_ind+1)
    
    if min(ans+n_ind+1,A[p_ind])>=ans+p_ind+1:
        k-=1
        ans=A[p_ind]

print(ans)
0