結果

問題 No.2217 Suffix+
ユーザー googol_S0googol_S0
提出日時 2023-02-17 21:23:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 90,228 KB
最終ジャッジ日時 2024-07-19 12:23:20
合計ジャッジ時間 5,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,180 KB
testcase_01 AC 38 ms
52,212 KB
testcase_02 AC 37 ms
52,924 KB
testcase_03 AC 37 ms
52,500 KB
testcase_04 AC 36 ms
52,568 KB
testcase_05 AC 37 ms
51,972 KB
testcase_06 AC 36 ms
52,192 KB
testcase_07 AC 37 ms
52,188 KB
testcase_08 AC 36 ms
52,764 KB
testcase_09 AC 37 ms
53,308 KB
testcase_10 AC 36 ms
52,664 KB
testcase_11 AC 36 ms
52,384 KB
testcase_12 AC 36 ms
52,696 KB
testcase_13 AC 37 ms
52,716 KB
testcase_14 AC 82 ms
67,552 KB
testcase_15 AC 81 ms
69,304 KB
testcase_16 AC 119 ms
74,132 KB
testcase_17 AC 99 ms
71,332 KB
testcase_18 AC 89 ms
70,104 KB
testcase_19 AC 196 ms
81,348 KB
testcase_20 AC 175 ms
80,204 KB
testcase_21 AC 64 ms
65,136 KB
testcase_22 AC 185 ms
82,612 KB
testcase_23 AC 153 ms
75,696 KB
testcase_24 AC 180 ms
88,544 KB
testcase_25 AC 178 ms
88,464 KB
testcase_26 AC 178 ms
88,380 KB
testcase_27 AC 179 ms
88,752 KB
testcase_28 AC 181 ms
90,228 KB
testcase_29 AC 205 ms
89,376 KB
testcase_30 AC 207 ms
89,744 KB
testcase_31 AC 206 ms
90,216 KB
testcase_32 AC 204 ms
89,356 KB
testcase_33 AC 202 ms
89,920 KB
testcase_34 AC 179 ms
89,244 KB
testcase_35 AC 36 ms
52,508 KB
testcase_36 AC 220 ms
90,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
L,R=0,10**18
while L<R:
  M=(L+R+1)>>1
  C=0
  D=0
  for i in range(N):
    V=(M-(A[i]+C)+i)//(i+1)
    if V>0:
      C+=V*(i+1)
      D+=V
  if D<=K:
    L=M
  else:
    R=min(R-1,M)
print(L)
0