結果

問題 No.467 隠されていたゲーム
ユーザー cympfhcympfh
提出日時 2017-05-18 18:01:35
言語 Ruby
(3.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 744 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-15 04:48:52
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 80 ms
12,288 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 77 ms
12,160 KB
testcase_07 AC 77 ms
12,160 KB
testcase_08 AC 79 ms
12,416 KB
testcase_09 AC 76 ms
12,160 KB
testcase_10 AC 78 ms
12,416 KB
testcase_11 AC 78 ms
12,160 KB
testcase_12 AC 78 ms
12,288 KB
testcase_13 AC 79 ms
12,288 KB
testcase_14 AC 77 ms
12,160 KB
testcase_15 AC 78 ms
12,288 KB
testcase_16 AC 78 ms
12,288 KB
testcase_17 AC 80 ms
12,160 KB
testcase_18 AC 957 ms
12,160 KB
testcase_19 AC 104 ms
12,160 KB
testcase_20 AC 87 ms
12,416 KB
testcase_21 AC 80 ms
12,160 KB
testcase_22 AC 75 ms
12,160 KB
testcase_23 AC 75 ms
12,160 KB
testcase_24 WA -
testcase_25 AC 77 ms
12,160 KB
testcase_26 AC 77 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def sign(n)
  n.positive? ? 1 : n.zero? ? 0 : -1
end

def solve(x0, y0, x, y, ds)
  ans = 0

  while true

    return ans if x0 == x && y0 == y

    dx = (x - x0).abs
    dy = (y - y0).abs
    ell = [dx, dy].max

    ds.each do |d|
      return ans + 1 if d == ell
    end

    maxd = ds[0]

    if dx > 3 * maxd && dy > 3 * maxd
      k = [dx / maxd, dy / maxd].min
      x0 += k * maxd * sign(x - x0)
      y0 += k * maxd * sign(y - y0)
      ans += k
      next
    end

    if ell >= 2 * maxd
      x0 += maxd * sign(x - x0)
      y0 += maxd * sign(y - y0)
      ans += 1
      next
    end

    return ans + 2

  end
end

_ = gets.to_i
ds = gets.split.map(&:to_i)
ds.sort!
ds.reverse!
x, y = gets.split.map(&:to_i)

p solve(0, 0, x, y, ds)
0