結果

問題 No.351 市松スライドパズル
コンテスト
ユーザー tkr182
提出日時 2018-10-05 02:05:22
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 550 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 561 ms
コンパイル使用メモリ 20,952 KB
実行使用メモリ 169,688 KB
最終ジャッジ日時 2026-04-29 11:30:20
合計ジャッジ時間 25,589 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 3
other AC * 4 WA * 8 TLE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

h,w=map(int,input().split())
n=int(input())
e=[[i for i in input().split()] for i in range(n)]
s=0
t=0
for i in range(n-1,-1,-1):
        if e[i][0]=="R":
            if int(e[i][1])==t:
                if s==0:
                    s=w-1
                    print(s,t)
                else:
                    s-=1
        else:
            if int(e[i][1])==s:
                if t==0:
                    t=h-1
                else:
                    t-=1
if (s%2==1 and t%2==0) or (s%2==0 and t%2==1):
    print("black")
else:
    print("white")
0