結果

問題 No.2217 Suffix+
ユーザー simansiman
提出日時 2023-02-18 11:23:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 861 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-07-19 22:59:23
合計ジャッジ時間 13,110 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 86 ms
12,160 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 AC 87 ms
12,032 KB
testcase_07 AC 85 ms
12,032 KB
testcase_08 AC 87 ms
12,032 KB
testcase_09 AC 85 ms
12,288 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 85 ms
12,032 KB
testcase_12 AC 84 ms
12,032 KB
testcase_13 AC 85 ms
12,160 KB
testcase_14 AC 159 ms
13,440 KB
testcase_15 AC 152 ms
13,312 KB
testcase_16 AC 198 ms
15,616 KB
testcase_17 AC 183 ms
14,720 KB
testcase_18 AC 169 ms
13,824 KB
testcase_19 AC 412 ms
17,408 KB
testcase_20 AC 333 ms
16,768 KB
testcase_21 AC 138 ms
12,288 KB
testcase_22 AC 395 ms
17,280 KB
testcase_23 AC 323 ms
15,744 KB
testcase_24 AC 477 ms
19,840 KB
testcase_25 AC 495 ms
19,840 KB
testcase_26 AC 453 ms
19,840 KB
testcase_27 AC 424 ms
19,840 KB
testcase_28 AC 434 ms
19,968 KB
testcase_29 AC 861 ms
19,840 KB
testcase_30 AC 842 ms
19,840 KB
testcase_31 AC 839 ms
19,840 KB
testcase_32 AC 860 ms
19,840 KB
testcase_33 AC 846 ms
19,840 KB
testcase_34 AC 339 ms
20,096 KB
testcase_35 AC 87 ms
12,032 KB
testcase_36 AC 816 ms
19,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

ok = 0
ng = A.max + K * N + 1

def f(x)
  k = K
  sum = 0

  A.each.with_index(1) do |a, i|
    a += sum

    if a < x
      diff = x - a
      op_cnt = (diff + i - 1) / i
      k -= op_cnt
      sum += i * op_cnt
    end

    if k < 0
      return false
    end
  end

  true
end

while (ok - ng).abs >= 2
  x = (ok + ng) / 2

  if f(x)
    ok = x
  else
    ng = x
  end
end

puts ok
0