結果

問題 No.351 市松スライドパズル
ユーザー code-devocode-devo
提出日時 2016-03-11 22:47:14
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 363 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 527,776 KB
最終ジャッジ日時 2024-09-25 01:05:40
合計ジャッジ時間 7,556 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,052 ms
19,100 KB
testcase_01 AC 91 ms
12,288 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 88 ms
12,032 KB
testcase_06 AC 87 ms
12,032 KB
testcase_07 AC 86 ms
12,032 KB
testcase_08 AC 91 ms
12,288 KB
testcase_09 AC 88 ms
12,032 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 90 ms
12,288 KB
testcase_12 AC 88 ms
12,032 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h, w = gets.split.map(&:to_i)
map = Array.new(h){|y| Array.new(w){|x| (x + y).even? ? "white" : "black"}}

gets
while line = gets do
  s, k = line.split
  k = k.to_i

  case s
  when "R" then
    map[k].rotate!(-1)
  when "C" then
    tmp = map[-1][k]
    (h-1).downto(1) do |y|
      map[y][k] = map[y-1][k]
    end
    map[0][k] = tmp
  end
end

puts map[0][0]
0