結果

問題 No.351 市松スライドパズル
ユーザー urutomurutom
提出日時 2019-04-13 14:40:47
言語 Ruby
(3.4.1)
結果
AC  
実行時間 1,916 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 190,720 KB
最終ジャッジ日時 2024-09-15 11:06:18
合計ジャッジ時間 22,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,916 ms
190,464 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 89 ms
12,032 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 90 ms
12,288 KB
testcase_11 AC 88 ms
12,160 KB
testcase_12 AC 88 ms
12,160 KB
testcase_13 AC 1,863 ms
190,208 KB
testcase_14 AC 1,888 ms
190,080 KB
testcase_15 AC 1,902 ms
190,464 KB
testcase_16 AC 1,907 ms
190,592 KB
testcase_17 AC 1,912 ms
190,720 KB
testcase_18 AC 1,886 ms
190,464 KB
testcase_19 AC 1,887 ms
190,720 KB
testcase_20 AC 1,887 ms
190,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h,w=gets.split.map(&:to_i)
x=y=0
operations=gets.to_i.times.map{gets.split}
operations.reverse.each{|c,k|
  if c==?R
    y=(y-1)%w if k.to_i==x
  else
    x=(x-1)%h if k.to_i==y
  end
}

puts (x+y).odd? ? "black" : "white"
0