結果

問題 No.351 市松スライドパズル
ユーザー lloyzlloyz
提出日時 2023-02-23 16:07:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 836 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 245,500 KB
最終ジャッジ日時 2024-07-23 11:20:03
合計ジャッジ時間 9,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 637 ms
183,472 KB
testcase_01 AC 36 ms
53,152 KB
testcase_02 AC 38 ms
53,432 KB
testcase_03 AC 36 ms
52,332 KB
testcase_04 AC 36 ms
52,936 KB
testcase_05 AC 36 ms
52,072 KB
testcase_06 AC 36 ms
52,196 KB
testcase_07 AC 35 ms
53,316 KB
testcase_08 AC 36 ms
52,740 KB
testcase_09 AC 37 ms
53,972 KB
testcase_10 AC 36 ms
52,728 KB
testcase_11 AC 38 ms
53,704 KB
testcase_12 AC 39 ms
53,480 KB
testcase_13 AC 800 ms
241,988 KB
testcase_14 AC 811 ms
241,788 KB
testcase_15 AC 803 ms
245,260 KB
testcase_16 AC 836 ms
245,288 KB
testcase_17 AC 829 ms
240,724 KB
testcase_18 AC 779 ms
237,448 KB
testcase_19 AC 816 ms
245,308 KB
testcase_20 AC 795 ms
245,500 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) % w
    elif s == 'C' and cj == k:
        ci = (ci - 1) % h
if (ci + cj) % 2 == 0:
    print("white")
else:
    print("black")
0