結果

問題 No.351 市松スライドパズル
コンテスト
ユーザー しらっ亭
提出日時 2016-03-12 00:18:28
言語 PyPy3
(7.3.23 + ACL)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 612 ms / 2,000 ms
+ 696µs
コード長 481 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 252 ms
コンパイル使用メモリ 95,816 KB
実行使用メモリ 248,448 KB
最終ジャッジ日時 2026-09-03 16:06:11
合計ジャッジ時間 10,553 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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

    A = [None] * N
    for i in range(N):
        A[i] = input().split()

    x = y = 0
    for i in range(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