結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

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