結果

問題 No.351 市松スライドパズル
ユーザー TawaraTawara
提出日時 2016-03-12 09:13:16
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 77,176 KB
実行使用メモリ 165,500 KB
最終ジャッジ日時 2024-09-25 02:50:57
合計ジャッジ時間 4,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 243 ms
161,992 KB
testcase_01 AC 76 ms
75,416 KB
testcase_02 AC 74 ms
75,396 KB
testcase_03 AC 75 ms
75,800 KB
testcase_04 AC 73 ms
75,396 KB
testcase_05 AC 73 ms
75,700 KB
testcase_06 AC 74 ms
75,680 KB
testcase_07 AC 74 ms
75,548 KB
testcase_08 AC 75 ms
75,928 KB
testcase_09 AC 73 ms
75,664 KB
testcase_10 AC 75 ms
75,296 KB
testcase_11 AC 74 ms
75,552 KB
testcase_12 AC 75 ms
75,708 KB
testcase_13 AC 253 ms
164,888 KB
testcase_14 AC 259 ms
164,980 KB
testcase_15 AC 259 ms
165,500 KB
testcase_16 AC 262 ms
165,344 KB
testcase_17 AC 243 ms
165,120 KB
testcase_18 AC 254 ms
165,392 KB
testcase_19 AC 256 ms
165,208 KB
testcase_20 AC 256 ms
165,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
def solve():
	IN = stdin.readlines()
	H,W = map(int,IN[0].split())
	N = int(IN[1])
	hx = hy = 0
	for i in xrange(N+1,1,-1):
		s,k = IN[i].split();
		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"
solve()
0