結果

問題 No.870 無敵囲い
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2019-10-27 01:54:00
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-29 06:26:44
合計ジャッジ時間 2,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

muteki_gakoi_movement = {
  '7 9' => '6 8',
  '2 8' => '5 8',
  '3 9' => '4 8'
}

movement = {}
gets.to_i.times do
  x1, y1, x2, y2 = gets.split.map(&:to_i)
  movement[[x1, y1].join(' ')] = [x2, y2].join(' ')
end

puts muteki_gakoi_movement.all? { |start_p, end_p|
  before, current = nil, start_p
  while current = movement[current]
    break true if current == end_p
    break false if before == movement[current]

    before = current
  end
} ? 'YES' : 'NO'
0