結果

問題 No.351 市松スライドパズル
ユーザー convexineqconvexineq
提出日時 2021-01-18 05:03:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 250,836 KB
最終ジャッジ日時 2024-11-30 13:35:19
合計ジャッジ時間 11,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 864 ms
248,576 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 37 ms
51,328 KB
testcase_05 AC 35 ms
51,456 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 36 ms
52,224 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 776 ms
246,656 KB
testcase_14 AC 766 ms
247,476 KB
testcase_15 AC 818 ms
250,752 KB
testcase_16 AC 802 ms
250,836 KB
testcase_17 AC 752 ms
250,300 KB
testcase_18 AC 798 ms
250,496 KB
testcase_19 AC 750 ms
250,616 KB
testcase_20 AC 726 ms
250,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
n = int(input())
res = [input().split() for _ in range(n)]
x = y = 0
for a,b in res[::-1]:
    if a=="C" and y == int(b):
        x = (x-1)%h
    if a=="R" and x == int(b):
        y = (y-1)%w
print("black" if (x+y)%2 else "white")
0