結果

問題 No.351 市松スライドパズル
ユーザー dangodango
提出日時 2023-06-13 21:01:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 853 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 250,776 KB
最終ジャッジ日時 2024-06-22 07:12:30
合計ジャッジ時間 11,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 822 ms
248,792 KB
testcase_01 AC 37 ms
52,840 KB
testcase_02 AC 37 ms
53,416 KB
testcase_03 AC 37 ms
53,320 KB
testcase_04 AC 36 ms
52,752 KB
testcase_05 AC 37 ms
52,244 KB
testcase_06 AC 37 ms
52,364 KB
testcase_07 AC 36 ms
52,472 KB
testcase_08 AC 35 ms
53,436 KB
testcase_09 AC 37 ms
52,340 KB
testcase_10 AC 36 ms
53,008 KB
testcase_11 AC 38 ms
53,548 KB
testcase_12 AC 37 ms
53,084 KB
testcase_13 AC 813 ms
246,972 KB
testcase_14 AC 819 ms
247,592 KB
testcase_15 AC 853 ms
250,208 KB
testcase_16 AC 850 ms
250,776 KB
testcase_17 AC 815 ms
250,056 KB
testcase_18 AC 820 ms
250,112 KB
testcase_19 AC 840 ms
250,356 KB
testcase_20 AC 838 ms
250,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int,input().split())
N = int(input())
SK = [input().split() for _ in range(N)]
I = J = 0
for S, K in SK[::-1]:
    K = int(K)
    if S == "R" and I == K:
        J = (J - 1) % W
    if S == "C" and J == K:
        I = (I - 1) % H
if (I + J) & 1:
    print("black")
else:
    print("white")
0