結果

問題 No.351 市松スライドパズル
ユーザー gorugo30gorugo30
提出日時 2021-03-20 13:45:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 797 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 234,552 KB
最終ジャッジ日時 2024-11-20 22:53:47
合計ジャッジ時間 10,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 763 ms
231,552 KB
testcase_01 AC 38 ms
52,944 KB
testcase_02 AC 37 ms
53,272 KB
testcase_03 AC 38 ms
52,316 KB
testcase_04 AC 35 ms
53,000 KB
testcase_05 AC 37 ms
52,520 KB
testcase_06 AC 36 ms
52,488 KB
testcase_07 AC 38 ms
52,320 KB
testcase_08 AC 37 ms
53,024 KB
testcase_09 AC 37 ms
53,056 KB
testcase_10 AC 36 ms
52,432 KB
testcase_11 AC 37 ms
52,696 KB
testcase_12 AC 38 ms
52,688 KB
testcase_13 AC 762 ms
229,560 KB
testcase_14 AC 793 ms
229,564 KB
testcase_15 AC 797 ms
234,480 KB
testcase_16 AC 789 ms
234,544 KB
testcase_17 AC 770 ms
234,160 KB
testcase_18 AC 766 ms
234,372 KB
testcase_19 AC 773 ms
234,484 KB
testcase_20 AC 780 ms
234,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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