結果

問題 No.602 隠されていたゲーム2
ユーザー zodi_G12zodi_G12
提出日時 2021-12-01 10:54:26
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 699 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,876 KB
最終ジャッジ日時 2024-07-04 10:10:18
合計ジャッジ時間 5,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
19,236 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 88 ms
12,032 KB
testcase_04 AC 88 ms
12,032 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 89 ms
12,160 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 87 ms
12,288 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i

l = gets.to_s.chop.split(" ").map{|i|i.to_i}

xy = gets.to_s.chop.split(" ").map{|i|i.to_i}

x = xy[0] < 0 ? xy[0] * -1 : xy[0]  
y = xy[1] < 0 ? xy[1] * -1 : xy[1]            

sum = x+y

step = -1
               
(l.size).times{|i|    
  if l[i] == sum  
    step = 1
    break          
  end              
  (l.size-1-i).times{|j| 
    if l[i] + l[i+j+1] == sum || (l[i] - l[i+j+1]).abs == sum
      step = 2                                               
      break                                                  
    end              
  }                                      
  if step != -1
    break
  end              
}                                        

puts step
0