結果

問題 No.1808 Fullgold Alchemist
ユーザー simansiman
提出日時 2022-01-15 01:38:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-11-20 18:33:34
合計ジャッジ時間 8,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 89 ms
12,288 KB
testcase_05 AC 156 ms
25,728 KB
testcase_06 AC 210 ms
25,472 KB
testcase_07 AC 149 ms
25,344 KB
testcase_08 AC 425 ms
26,240 KB
testcase_09 AC 265 ms
26,240 KB
testcase_10 AC 167 ms
26,368 KB
testcase_11 AC 249 ms
26,112 KB
testcase_12 AC 145 ms
25,600 KB
testcase_13 AC 337 ms
25,472 KB
testcase_14 AC 273 ms
25,728 KB
testcase_15 AC 267 ms
25,600 KB
testcase_16 AC 83 ms
12,288 KB
testcase_17 AC 76 ms
12,160 KB
testcase_18 AC 102 ms
13,824 KB
testcase_19 AC 81 ms
12,288 KB
testcase_20 AC 133 ms
15,104 KB
testcase_21 AC 90 ms
12,928 KB
testcase_22 AC 78 ms
12,288 KB
testcase_23 AC 86 ms
12,672 KB
testcase_24 AC 85 ms
12,288 KB
testcase_25 AC 82 ms
12,544 KB
testcase_26 AC 116 ms
13,952 KB
testcase_27 AC 139 ms
14,336 KB
testcase_28 AC 300 ms
24,960 KB
testcase_29 AC 168 ms
16,256 KB
testcase_30 AC 160 ms
15,744 KB
testcase_31 AC 279 ms
23,680 KB
testcase_32 AC 289 ms
19,200 KB
testcase_33 AC 318 ms
22,016 KB
testcase_34 AC 400 ms
24,576 KB
testcase_35 AC 261 ms
20,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

def f(x)
  stock = 0
  cost = x * M

  A.each do |a|
    return false if (a + stock) < cost

    if cost <= a
      stock += a - cost
    else
      r = cost - a
      stock -= r
    end
  end

  true
end

ok = 0
ng = 10 ** 18

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

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

puts ok
0