結果

問題 No.1738 What's in the box?
ユーザー simansiman
提出日時 2021-11-22 18:30:42
言語 Ruby
(3.4.1)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-24 06:35:27
合計ジャッジ時間 8,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 70
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
W = gets.split.map(&:to_i)
gcd = W.inject(&:gcd)
S = W.sum

if gcd.zero?
  puts W.join(' ')
  exit
end

NW = W.map { |x| x / gcd }

def f(r)
  NW.map { |x| x * r }.sum <= M
end

ok = 1
ng = 10 ** 9

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

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

puts NW.map { |x| x * ok }.join(' ')
0