結果

問題 No.602 隠されていたゲーム2
ユーザー cympfhcympfh
提出日時 2017-12-03 05:28:32
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-05-06 04:52:42
合計ジャッジ時間 3,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,032 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 83 ms
12,160 KB
testcase_05 AC 84 ms
12,288 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 85 ms
12,160 KB
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 83 ms
12,160 KB
testcase_10 AC 84 ms
12,160 KB
testcase_11 AC 83 ms
12,160 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 84 ms
12,160 KB
testcase_15 AC 84 ms
12,032 KB
testcase_16 AC 96 ms
12,928 KB
testcase_17 WA -
testcase_18 AC 136 ms
18,816 KB
testcase_19 WA -
testcase_20 AC 153 ms
19,968 KB
testcase_21 AC 157 ms
19,712 KB
testcase_22 AC 130 ms
20,096 KB
testcase_23 AC 152 ms
20,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:20: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:31: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:37: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i
ds = gets.chomp.split.map(&:to_i)
x, y = gets.chomp.split.map(&:to_i)
r = x.abs + y.abs

if r.zero?

  p 0

elsif ds.any? {|d| d == r}

  p 1

elsif r.even?

  d_max = ds.max
  if r <= d_max + d_max
    p 2
  else
    p -1
  end

else

  es = ds.select(&:even?)
  os = ds.select(&:odd?)
  e_max = es.max
  o_max = os.max

  if e_max == nil or o_max == nil
    p -1
  elsif es.any? {|d| (d - o_max).abs <= r and r <= d + o_max}
    p 2
  elsif os.any? {|d| (d - e_max).abs <= r and r <= d + e_max}
    p 2
  else
    p -1
  end

end
0