結果

問題 No.351 市松スライドパズル
ユーザー TawaraTawara
提出日時 2016-03-11 23:07:20
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 76,844 KB
実行使用メモリ 239,792 KB
最終ジャッジ日時 2024-09-25 02:33:18
合計ジャッジ時間 6,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
239,792 KB
testcase_01 AC 77 ms
75,312 KB
testcase_02 AC 71 ms
75,648 KB
testcase_03 AC 70 ms
75,552 KB
testcase_04 AC 71 ms
75,656 KB
testcase_05 AC 73 ms
75,792 KB
testcase_06 AC 73 ms
75,400 KB
testcase_07 AC 72 ms
75,284 KB
testcase_08 AC 72 ms
75,552 KB
testcase_09 AC 70 ms
75,764 KB
testcase_10 AC 72 ms
75,556 KB
testcase_11 AC 71 ms
75,556 KB
testcase_12 AC 73 ms
75,580 KB
testcase_13 AC 463 ms
237,084 KB
testcase_14 AC 452 ms
237,256 KB
testcase_15 AC 446 ms
237,496 KB
testcase_16 AC 443 ms
237,128 KB
testcase_17 AC 434 ms
237,384 KB
testcase_18 AC 430 ms
237,276 KB
testcase_19 AC 443 ms
237,388 KB
testcase_20 AC 438 ms
237,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
def solve():
    H,W = map(int,stdin.readline().split())
    N = int(raw_input())
    SK = [stdin.readline().split() for i in xrange(N)]
    hx = hy = 0
    for i in xrange(N-1,-1,-1):
        s,k = SK[i]
        k = int(k)
        if s == "R":
            if k == hy:
                hx = (hx - 1) % W
        else:
            if k == hx:
                hy = (hy - 1) % H
    print "white" if (hx + hy) % 2 == 0 else "black"
solve()
0