結果

問題 No.351 市松スライドパズル
ユーザー kimiyukikimiyuki
提出日時 2016-03-11 22:39:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 795 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 185,660 KB
最終ジャッジ日時 2024-09-25 01:01:44
合計ジャッジ時間 9,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 745 ms
185,660 KB
testcase_01 AC 36 ms
53,164 KB
testcase_02 AC 37 ms
52,964 KB
testcase_03 AC 36 ms
53,196 KB
testcase_04 AC 35 ms
52,708 KB
testcase_05 AC 36 ms
52,524 KB
testcase_06 AC 35 ms
52,068 KB
testcase_07 AC 35 ms
52,900 KB
testcase_08 AC 35 ms
52,608 KB
testcase_09 AC 36 ms
52,416 KB
testcase_10 AC 37 ms
51,876 KB
testcase_11 AC 39 ms
52,748 KB
testcase_12 AC 38 ms
53,744 KB
testcase_13 AC 739 ms
184,728 KB
testcase_14 AC 727 ms
184,764 KB
testcase_15 AC 716 ms
184,672 KB
testcase_16 AC 795 ms
184,692 KB
testcase_17 AC 738 ms
184,784 KB
testcase_18 AC 745 ms
184,784 KB
testcase_19 AC 763 ms
184,756 KB
testcase_20 AC 732 ms
184,676 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