結果

問題 No.351 市松スライドパズル
コンテスト
ユーザー ebicochineal
提出日時 2016-03-12 05:40:11
言語 PyPy2
(7.3.20)
コンパイル:
pypy2 -m py_compile _filename_
実行:
/usr/bin/pypy2 Main.pyc
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 529 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 115 ms
コンパイル使用メモリ 80,640 KB
実行使用メモリ 244,480 KB
最終ジャッジ日時 2026-04-12 06:32:58
合計ジャッジ時間 6,324 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

def main():
    H, W = map(int, raw_input().split())
    N = int(raw_input())
    R = xrange(N)
    H, W, N = H-1, W-1, N-1
    S = [raw_input().split() for _ in R]
    y, x = [0, 0]
    for i in R:
        j = N-i
        a = int(S[j][1])
        s = S[j][0]
        if s == 'C' and x == a:
            b = y-1
            if b<0:b=H
            y = b
        elif s == 'R' and y == a:
            b = x-1
            if b<0:b=W
            x = b
    print('black' if (y+x)%2 else 'white')

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