結果

問題 No.351 市松スライドパズル
ユーザー しらっ亭しらっ亭
提出日時 2016-03-12 00:20:22
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 238,984 KB
最終ジャッジ日時 2024-09-25 02:41:27
合計ジャッジ時間 9,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 671 ms
238,984 KB
testcase_01 AC 86 ms
75,392 KB
testcase_02 AC 89 ms
75,264 KB
testcase_03 AC 78 ms
75,644 KB
testcase_04 AC 79 ms
75,248 KB
testcase_05 AC 79 ms
75,552 KB
testcase_06 AC 78 ms
75,648 KB
testcase_07 AC 80 ms
75,728 KB
testcase_08 AC 79 ms
75,612 KB
testcase_09 AC 79 ms
75,476 KB
testcase_10 AC 77 ms
75,544 KB
testcase_11 AC 79 ms
75,144 KB
testcase_12 AC 80 ms
75,372 KB
testcase_13 AC 674 ms
237,964 KB
testcase_14 AC 662 ms
238,036 KB
testcase_15 AC 708 ms
238,312 KB
testcase_16 AC 682 ms
238,208 KB
testcase_17 AC 689 ms
238,464 KB
testcase_18 AC 666 ms
238,120 KB
testcase_19 AC 669 ms
238,352 KB
testcase_20 AC 660 ms
237,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    H, W = map(int, raw_input().split())
    N = int(input())

    A = [None] * N
    for i in xrange(N):
        A[i] = raw_input().split()

    x = y = 0
    for i in xrange(N - 1, -1, -1):
        s, k = A[i]
        if s == 'R':
            if int(k) == y:
                x = x - 1 if x else W - 1
        else:
            if int(k) == x:
                y = y - 1 if y else H - 1

    print('black' if ((x + y) % 2) else 'white')


if __name__ == '__main__':
    solve()
0