結果

問題 No.351 市松スライドパズル
ユーザー H3PO4H3PO4
提出日時 2020-06-25 15:30:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 242,652 KB
最終ジャッジ日時 2024-07-03 21:32:16
合計ジャッジ時間 6,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 356 ms
176,528 KB
testcase_01 AC 36 ms
52,756 KB
testcase_02 AC 36 ms
51,880 KB
testcase_03 AC 37 ms
52,200 KB
testcase_04 AC 35 ms
53,028 KB
testcase_05 AC 36 ms
52,536 KB
testcase_06 AC 36 ms
52,064 KB
testcase_07 AC 36 ms
52,292 KB
testcase_08 AC 35 ms
53,368 KB
testcase_09 AC 35 ms
53,216 KB
testcase_10 AC 36 ms
52,144 KB
testcase_11 AC 36 ms
53,376 KB
testcase_12 AC 35 ms
52,488 KB
testcase_13 AC 479 ms
237,112 KB
testcase_14 AC 478 ms
237,596 KB
testcase_15 AC 488 ms
242,252 KB
testcase_16 AC 492 ms
242,232 KB
testcase_17 AC 457 ms
237,556 KB
testcase_18 AC 440 ms
225,816 KB
testcase_19 AC 468 ms
242,652 KB
testcase_20 AC 475 ms
242,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

H, W = map(int, input().split())
N = int(input())
Q = []
for _ in range(N):
    S, K = input().split()
    K = int(K)
    Q.append((S, K))

cur_x, cur_y = 0, 0
for s, k in reversed(Q):
    if s == 'R':
        if cur_x == k:
            cur_y = (cur_y - 1) % W
    else:
        if cur_y == k:
            cur_x = (cur_x - 1) % H
print('black' if (cur_x + cur_y) % 2 else 'white')
0