結果

問題 No.351 市松スライドパズル
ユーザー gorugo30gorugo30
提出日時 2021-03-20 13:46:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 232,884 KB
最終ジャッジ日時 2024-05-01 00:06:16
合計ジャッジ時間 7,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 492 ms
228,284 KB
testcase_01 AC 39 ms
53,816 KB
testcase_02 AC 37 ms
52,884 KB
testcase_03 AC 37 ms
53,340 KB
testcase_04 AC 38 ms
53,440 KB
testcase_05 AC 37 ms
52,880 KB
testcase_06 AC 38 ms
52,008 KB
testcase_07 AC 38 ms
52,496 KB
testcase_08 AC 38 ms
53,792 KB
testcase_09 AC 38 ms
52,928 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 39 ms
52,660 KB
testcase_12 AC 38 ms
52,952 KB
testcase_13 AC 544 ms
231,484 KB
testcase_14 AC 550 ms
231,936 KB
testcase_15 AC 547 ms
232,656 KB
testcase_16 AC 548 ms
232,480 KB
testcase_17 AC 522 ms
232,300 KB
testcase_18 AC 516 ms
232,884 KB
testcase_19 AC 548 ms
232,328 KB
testcase_20 AC 543 ms
232,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H, W = map(int, input().split())
N = int(input())
op = [list(input().split()) for i in range(N)]
op = op[::-1]
r, c = 0, 0
for i in range(N):
    if op[i][0] == "R" and int(op[i][1]) == r:
        c = (c - 1) % W
    if op[i][0] == "C" and int(op[i][1]) == c:
        r = (r - 1) % H
if (r + c) % 2:
    print("black")
else:
    print("white")
0