結果

問題 No.467 隠されていたゲーム
ユーザー finefine
提出日時 2016-12-20 00:41:30
言語 Ruby
(3.4.1)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-04 16:20:03
合計ジャッジ時間 2,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n=gets.to_i
d=gets.split.map(&:to_i)
dmax = d.max
x=gets.split.map(&:to_i).map(&:abs).max
ans = ([x - 2 * dmax, 0].max + dmax - 1) / dmax
x -= ans * dmax
if d.include?(x)
    ans += 1
elsif x > 0
    ans += 2
end
p ans
0