結果

問題 No.351 市松スライドパズル
ユーザー tookunn_1213tookunn_1213
提出日時 2016-03-12 00:13:30
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 76,816 KB
実行使用メモリ 849,592 KB
最終ジャッジ日時 2024-09-25 01:36:04
合計ジャッジ時間 5,583 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
78,360 KB
testcase_01 AC 71 ms
75,652 KB
testcase_02 AC 67 ms
75,776 KB
testcase_03 WA -
testcase_04 AC 68 ms
75,672 KB
testcase_05 AC 68 ms
75,516 KB
testcase_06 AC 69 ms
75,968 KB
testcase_07 AC 68 ms
75,404 KB
testcase_08 AC 70 ms
75,552 KB
testcase_09 AC 69 ms
75,792 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 72 ms
75,516 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,raw_input().split())
N = int(raw_input())
tile = [[(i + j) % 2 for j in range(W)]for i in range(H)]
for i in range(N):
	S,K = raw_input().split()
	K = int(K)
	if S == 'R':
		right = tile[K][W - 1]
		for c in range(1,W):
			tile[K][c] = tile[K][c - 1]
		tile[K][0] = right
	else:
		bottom = tile[H - 1][K]
		for r in range(1,H):
			tile[r][K] = tile[r - 1][K]
		tile[0][K] = bottom
if tile[0][0] == 0:
	print 'white'
else:
	print 'black'
0