結果

問題 No.351 市松スライドパズル
ユーザー Snark86Snark86
提出日時 2016-03-11 23:33:00
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 77,116 KB
実行使用メモリ 165,592 KB
最終ジャッジ日時 2024-09-25 02:37:51
合計ジャッジ時間 5,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
161,972 KB
testcase_01 AC 71 ms
75,552 KB
testcase_02 AC 71 ms
75,544 KB
testcase_03 AC 71 ms
75,532 KB
testcase_04 AC 71 ms
75,268 KB
testcase_05 AC 70 ms
75,684 KB
testcase_06 AC 70 ms
75,668 KB
testcase_07 AC 72 ms
75,404 KB
testcase_08 AC 71 ms
75,808 KB
testcase_09 AC 72 ms
75,312 KB
testcase_10 AC 70 ms
75,408 KB
testcase_11 AC 71 ms
75,300 KB
testcase_12 AC 71 ms
75,432 KB
testcase_13 AC 277 ms
165,232 KB
testcase_14 AC 278 ms
165,004 KB
testcase_15 AC 277 ms
165,592 KB
testcase_16 AC 277 ms
165,336 KB
testcase_17 AC 256 ms
165,456 KB
testcase_18 AC 257 ms
165,456 KB
testcase_19 AC 271 ms
165,476 KB
testcase_20 AC 281 ms
165,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
lines = sys.stdin.readlines()
H, W = map(int,lines[0].strip().split())
r = 0
c = 0
N = len(lines) - 2
for i in range(N):
	a,b = lines[N+1-i].strip().split()
	if a == "R" and int(b) == r:
		c = (c+W-1) % W
	elif a == "C" and int(b) == c:
		r = (r+H-1) % H

color = ["white","black"]
print color[(r+c)%2]
0