結果

問題 No.2217 Suffix+
ユーザー timitimi
提出日時 2023-02-17 21:40:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-07-19 12:50:16
合計ジャッジ時間 4,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 36 ms
52,224 KB
testcase_12 AC 36 ms
51,944 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 53 ms
66,560 KB
testcase_15 AC 55 ms
67,200 KB
testcase_16 AC 65 ms
73,856 KB
testcase_17 AC 59 ms
70,528 KB
testcase_18 AC 57 ms
68,608 KB
testcase_19 AC 130 ms
82,304 KB
testcase_20 AC 127 ms
79,872 KB
testcase_21 AC 60 ms
64,384 KB
testcase_22 AC 133 ms
81,920 KB
testcase_23 AC 114 ms
76,160 KB
testcase_24 AC 88 ms
87,936 KB
testcase_25 AC 89 ms
87,552 KB
testcase_26 AC 92 ms
88,064 KB
testcase_27 AC 88 ms
88,064 KB
testcase_28 AC 88 ms
88,192 KB
testcase_29 AC 163 ms
89,984 KB
testcase_30 AC 162 ms
89,728 KB
testcase_31 AC 162 ms
89,856 KB
testcase_32 AC 162 ms
90,060 KB
testcase_33 AC 163 ms
90,112 KB
testcase_34 AC 88 ms
88,112 KB
testcase_35 AC 37 ms
52,224 KB
testcase_36 AC 196 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
A=list(map(int, input().split()))
ok,ng=0,10**15
while ng-ok>1:
  mid=(ok+ng)//2
  c=0
  base=0
  for j in range(N):
    a=base+A[j]
    if mid>a:
      cc=(mid-a-1)//(j+1)+1
      base+=cc*(j+1)
      c+=cc 
  if c>K:
    ng=mid 
  else:
    ok=mid 
print(ok)
0