結果

問題 No.351 市松スライドパズル
ユーザー ntudantuda
提出日時 2024-12-28 13:12:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 984 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 647 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 243,736 KB
最終ジャッジ日時 2024-12-28 13:12:50
合計ジャッジ時間 13,347 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 796 ms
182,924 KB
testcase_01 AC 52 ms
51,840 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 44 ms
51,968 KB
testcase_04 AC 53 ms
51,712 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 46 ms
51,968 KB
testcase_07 AC 50 ms
51,712 KB
testcase_08 AC 49 ms
51,840 KB
testcase_09 AC 47 ms
52,096 KB
testcase_10 AC 49 ms
52,096 KB
testcase_11 AC 54 ms
52,096 KB
testcase_12 AC 47 ms
52,096 KB
testcase_13 AC 984 ms
243,352 KB
testcase_14 AC 894 ms
243,608 KB
testcase_15 AC 922 ms
243,604 KB
testcase_16 AC 930 ms
243,604 KB
testcase_17 AC 971 ms
240,256 KB
testcase_18 AC 902 ms
233,776 KB
testcase_19 AC 960 ms
243,228 KB
testcase_20 AC 930 ms
243,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
N = int(input())
SK = []
for _ in range(N):
    s, k = input().split()
    k = int(k)
    SK.append((s, k))
x, y = 0, 0
for s, k in reversed(SK):
    if s == "R":
        if x == k:
            y -= 1
            y %= W
    else:
        if y == k:
            x -= 1
            x %= H
if (x & 1) ^ (y & 1) == 0:
    print("white")
else:
    print("black")
0