結果

問題 No.351 市松スライドパズル
ユーザー tabataba
提出日時 2016-04-14 19:59:48
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 663 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 76,932 KB
実行使用メモリ 247,312 KB
最終ジャッジ日時 2024-09-25 03:00:50
合計ジャッジ時間 9,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 639 ms
247,312 KB
testcase_01 AC 77 ms
75,420 KB
testcase_02 AC 76 ms
75,712 KB
testcase_03 AC 78 ms
75,432 KB
testcase_04 AC 78 ms
75,764 KB
testcase_05 AC 77 ms
75,292 KB
testcase_06 AC 77 ms
75,688 KB
testcase_07 AC 77 ms
75,528 KB
testcase_08 AC 76 ms
75,828 KB
testcase_09 AC 76 ms
75,432 KB
testcase_10 AC 76 ms
75,708 KB
testcase_11 AC 78 ms
75,824 KB
testcase_12 AC 76 ms
75,560 KB
testcase_13 AC 655 ms
245,636 KB
testcase_14 AC 656 ms
246,144 KB
testcase_15 AC 655 ms
246,260 KB
testcase_16 AC 663 ms
246,292 KB
testcase_17 AC 649 ms
245,784 KB
testcase_18 AC 638 ms
245,816 KB
testcase_19 AC 651 ms
246,140 KB
testcase_20 AC 656 ms
246,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,raw_input().split())
n=input()
x=0
y=0
for sk in[raw_input().split()for i in xrange(n)][::-1]:
	#print sk,x,y
	k=int(sk[1])
	if ord(sk[0])==82:
		if y==k:
			x=(x-1+w)%w
	elif x==k:
		y=(y-1+h)%h
print["white","black"][x&1^y&1]
0