結果

問題 No.351 市松スライドパズル
ユーザー LayCurseLayCurse
提出日時 2016-03-11 23:11:28
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 1,640 ms
コンパイル使用メモリ 76,728 KB
実行使用メモリ 165,632 KB
最終ジャッジ日時 2024-09-25 02:33:59
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 236 ms
162,356 KB
testcase_01 AC 73 ms
75,420 KB
testcase_02 AC 73 ms
75,560 KB
testcase_03 AC 73 ms
75,532 KB
testcase_04 AC 72 ms
75,544 KB
testcase_05 AC 70 ms
75,296 KB
testcase_06 AC 72 ms
75,424 KB
testcase_07 AC 72 ms
75,272 KB
testcase_08 AC 72 ms
75,816 KB
testcase_09 AC 72 ms
75,408 KB
testcase_10 AC 70 ms
75,536 KB
testcase_11 AC 70 ms
75,660 KB
testcase_12 AC 70 ms
75,524 KB
testcase_13 AC 263 ms
164,760 KB
testcase_14 AC 264 ms
165,140 KB
testcase_15 AC 265 ms
165,464 KB
testcase_16 AC 266 ms
165,340 KB
testcase_17 AC 245 ms
165,136 KB
testcase_18 AC 249 ms
165,484 KB
testcase_19 AC 267 ms
165,632 KB
testcase_20 AC 276 ms
165,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
ARR = sys.stdin.read().splitlines()
H,W = ARR[0].split()
H = int(H)
W = int(W)
N = ARR[1]
N = int(N)
hx = hy = 0
for i in xrange(N-1,-1,-1):
    s,k = ARR[i+2].split()
    k = int(k)
    if s == "R":
        if k == hy:
            hx = hx - 1
            if hx == -1:
                hx = W - 1
    else:
        if k == hx:
            hy = hy - 1
            if hy == -1:
                hy = H - 1
print "white" if (hx + hy) % 2 == 0 else "black"
0