結果

問題 No.351 市松スライドパズル
ユーザー TawaraTawara
提出日時 2016-03-11 22:48:04
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 1,635 ms
コンパイル使用メモリ 77,096 KB
実行使用メモリ 245,620 KB
最終ジャッジ日時 2023-10-25 07:08:14
合計ジャッジ時間 10,587 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 688 ms
245,368 KB
testcase_01 AC 73 ms
76,152 KB
testcase_02 AC 73 ms
76,152 KB
testcase_03 AC 72 ms
76,152 KB
testcase_04 AC 73 ms
76,152 KB
testcase_05 AC 73 ms
76,152 KB
testcase_06 AC 72 ms
76,152 KB
testcase_07 AC 74 ms
76,152 KB
testcase_08 AC 73 ms
76,152 KB
testcase_09 AC 73 ms
76,152 KB
testcase_10 AC 73 ms
76,152 KB
testcase_11 AC 75 ms
76,152 KB
testcase_12 AC 73 ms
76,152 KB
testcase_13 AC 661 ms
241,864 KB
testcase_14 AC 664 ms
242,816 KB
testcase_15 AC 653 ms
245,548 KB
testcase_16 AC 649 ms
245,620 KB
testcase_17 AC 641 ms
245,484 KB
testcase_18 AC 636 ms
245,368 KB
testcase_19 AC 644 ms
245,572 KB
testcase_20 AC 653 ms
245,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,raw_input().split())
N = int(raw_input())
SK = [raw_input().split() for i in xrange(N)]
hx = hy = 0
for i in xrange(N-1,-1,-1):
	s,k = SK[i]
	k = int(k)
	if s == "R":
		if k == hy:
			hx = (hx - 1) % W
	else:
		if k == hx:
			hy = (hy - 1) % H
print "white" if (hx + hy) % 2 == 0 else "black"
0