結果

問題 No.870 無敵囲い
ユーザー gemmarogemmaro
提出日時 2019-10-11 06:25:38
言語 Ruby
(3.3.0)
結果
AC  
実行時間 84 ms / 300 ms
コード長 446 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 11,440 KB
実行使用メモリ 15,272 KB
最終ジャッジ日時 2023-09-11 16:18:34
合計ジャッジ時間 2,841 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
15,072 KB
testcase_01 AC 81 ms
15,012 KB
testcase_02 AC 81 ms
15,100 KB
testcase_03 AC 80 ms
15,264 KB
testcase_04 AC 81 ms
15,264 KB
testcase_05 AC 80 ms
15,100 KB
testcase_06 AC 80 ms
15,272 KB
testcase_07 AC 82 ms
15,064 KB
testcase_08 AC 81 ms
15,132 KB
testcase_09 AC 81 ms
15,060 KB
testcase_10 AC 81 ms
15,112 KB
testcase_11 AC 81 ms
15,108 KB
testcase_12 AC 81 ms
15,272 KB
testcase_13 AC 81 ms
15,112 KB
testcase_14 AC 83 ms
15,096 KB
testcase_15 AC 84 ms
15,040 KB
testcase_16 AC 82 ms
15,140 KB
testcase_17 AC 84 ms
15,228 KB
testcase_18 AC 83 ms
15,108 KB
testcase_19 AC 82 ms
15,108 KB
testcase_20 AC 82 ms
15,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
rook = [2,8]
silver_r = [3,9]                                                       
silver_l = [7,9]
n.times {
    x1, y1, x2, y2 = gets.chomp.split.map &:to_i
    dst = [x2, y2]

    case [x1, y1]
    when rook
        rook = dst    
    when silver_r
        silver_r = dst
    when silver_l
        silver_l = dst
    end
}
if rook == [5,8] and silver_r == [4,8] and silver_l == [6,8]
    puts "YES"
else
    puts "NO"
end
0