結果

問題 No.351 市松スライドパズル
ユーザー kimiyukikimiyuki
提出日時 2016-03-11 22:39:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 81,660 KB
実行使用メモリ 185,540 KB
最終ジャッジ日時 2023-10-25 05:37:46
合計ジャッジ時間 10,644 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 802 ms
185,540 KB
testcase_01 AC 37 ms
53,552 KB
testcase_02 AC 36 ms
53,552 KB
testcase_03 AC 36 ms
53,552 KB
testcase_04 AC 36 ms
53,552 KB
testcase_05 AC 37 ms
53,552 KB
testcase_06 AC 36 ms
53,552 KB
testcase_07 AC 37 ms
53,552 KB
testcase_08 AC 36 ms
53,552 KB
testcase_09 AC 36 ms
53,552 KB
testcase_10 AC 36 ms
53,552 KB
testcase_11 AC 37 ms
53,552 KB
testcase_12 AC 37 ms
53,552 KB
testcase_13 AC 782 ms
184,392 KB
testcase_14 AC 801 ms
184,440 KB
testcase_15 AC 793 ms
184,580 KB
testcase_16 AC 813 ms
184,588 KB
testcase_17 AC 790 ms
184,568 KB
testcase_18 AC 805 ms
184,408 KB
testcase_19 AC 805 ms
184,432 KB
testcase_20 AC 816 ms
184,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
h, w = map(int,input().split())
n = int(input())
ops = [(lambda s, k: (s, int(k)))(*input().split()) for i in range(n)]
y, x = 0, 0
for s, k in reversed(ops):
    if s == 'R':
        if y == k:
            x = (x - 1) % w
    elif s == 'C':
        if x == k:
            y = (y - 1) % h
print(y % 2 == x % 2 and 'white' or 'black')
0