結果

問題 No.351 市松スライドパズル
ユーザー LayCurseLayCurse
提出日時 2016-03-11 22:56:41
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 668 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 76,840 KB
実行使用メモリ 245,176 KB
最終ジャッジ日時 2024-09-25 02:30:50
合計ジャッジ時間 9,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 635 ms
245,172 KB
testcase_01 AC 74 ms
75,404 KB
testcase_02 AC 74 ms
75,576 KB
testcase_03 AC 74 ms
75,840 KB
testcase_04 AC 72 ms
75,780 KB
testcase_05 AC 74 ms
75,768 KB
testcase_06 AC 73 ms
75,900 KB
testcase_07 AC 73 ms
75,764 KB
testcase_08 AC 73 ms
75,812 KB
testcase_09 AC 73 ms
75,428 KB
testcase_10 AC 74 ms
75,548 KB
testcase_11 AC 74 ms
75,400 KB
testcase_12 AC 74 ms
75,784 KB
testcase_13 AC 637 ms
241,052 KB
testcase_14 AC 659 ms
242,408 KB
testcase_15 AC 668 ms
244,648 KB
testcase_16 AC 655 ms
245,176 KB
testcase_17 AC 638 ms
244,716 KB
testcase_18 AC 633 ms
244,948 KB
testcase_19 AC 650 ms
244,676 KB
testcase_20 AC 645 ms
244,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,raw_input().split())
N = int(raw_input())
SK = [raw_input().split() for i in xrange(N)]
hx = hy = 0
for i in xrange(N-1,-1,-1):
    s,k = SK[i]
    k = int(k)
    if s == "R":
        if k == hy:
            hx = hx - 1
            if hx == -1:
                hx = W - 1
    else:
        if k == hx:
            hy = hy - 1
            if hy == -1:
                hy = H - 1
print "white" if (hx + hy) % 2 == 0 else "black"
0