結果

問題 No.351 市松スライドパズル
ユーザー lloyzlloyz
提出日時 2023-02-23 16:06:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 245,572 KB
最終ジャッジ日時 2024-07-23 11:19:35
合計ジャッジ時間 10,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 670 ms
183,544 KB
testcase_01 AC 36 ms
52,612 KB
testcase_02 AC 38 ms
52,896 KB
testcase_03 AC 37 ms
52,948 KB
testcase_04 AC 36 ms
53,164 KB
testcase_05 AC 36 ms
52,212 KB
testcase_06 AC 37 ms
53,496 KB
testcase_07 AC 37 ms
52,412 KB
testcase_08 AC 37 ms
53,280 KB
testcase_09 AC 38 ms
52,940 KB
testcase_10 AC 38 ms
52,824 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 846 ms
242,168 KB
testcase_14 AC 840 ms
242,048 KB
testcase_15 AC 857 ms
245,572 KB
testcase_16 AC 861 ms
245,196 KB
testcase_17 AC 847 ms
241,052 KB
testcase_18 AC 837 ms
237,652 KB
testcase_19 AC 855 ms
245,216 KB
testcase_20 AC 850 ms
245,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
n = int(input())
P = []
for _ in range(n):
    s, k = input().split()
    P.append((s, int(k)))

ci, cj = 0, 0
for i in range(n - 1, -1, -1):
    s, k = P[i]
    if s == 'R' and ci == k:
        cj = (cj - 1) % h
    elif s == 'C' and cj == k:
        ci = (ci - 1) % w
if (ci + cj) % 2 == 0:
    print("white")
else:
    print("black")
0