結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | cympfh |
提出日時 | 2017-12-02 02:25:59 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 558 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 24,448 KB |
最終ジャッジ日時 | 2024-05-06 00:47:25 |
合計ジャッジ時間 | 3,763 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 90 ms
12,032 KB |
testcase_01 | AC | 96 ms
12,160 KB |
testcase_02 | AC | 92 ms
12,288 KB |
testcase_03 | AC | 91 ms
12,416 KB |
testcase_04 | AC | 94 ms
12,032 KB |
testcase_05 | AC | 91 ms
12,288 KB |
testcase_06 | AC | 94 ms
12,160 KB |
testcase_07 | WA | - |
testcase_08 | AC | 91 ms
12,032 KB |
testcase_09 | AC | 90 ms
12,160 KB |
testcase_10 | AC | 92 ms
12,160 KB |
testcase_11 | AC | 90 ms
12,160 KB |
testcase_12 | AC | 88 ms
12,160 KB |
testcase_13 | AC | 89 ms
12,032 KB |
testcase_14 | AC | 90 ms
12,160 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 118 ms
15,360 KB |
testcase_18 | AC | 168 ms
21,504 KB |
testcase_19 | AC | 185 ms
23,680 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 155 ms
21,760 KB |
testcase_23 | AC | 174 ms
24,448 KB |
コンパイルメッセージ
Main.rb:13: warning: ambiguous first argument; put parentheses or a space even after `-' operator Main.rb:21: warning: ambiguous first argument; put parentheses or a space even after `-' operator Main.rb:33: warning: ambiguous first argument; put parentheses or a space even after `-' operator Main.rb:1: warning: assigned but unused variable - n Syntax OK
ソースコード
n = gets.to_i ds = gets.chomp.split.map(&:to_i).sort.reverse x, y = gets.chomp.split.map(&:to_i) r = x.abs + y.abs if ds.any? {|d| d == r} p 1 elsif r.even? d_max = ds[0] if r <= d_max + d_max p 2 else p -1 end else es = ds.select(&:even?).sort.reverse os = ds.select(&:odd?).sort.reverse if es.size.zero? or os.size.zero? p -1 exit end e_max = es[0] o_max = os[0] if es.any? {|d| d - o_max <= r and r <= d + o_max} p 2 elsif os.any? {|d| d - e_max <= r and r <= d + e_max} p 2 else p -1 end end