結果

問題 No.351 市松スライドパズル
ユーザー rpy3cpprpy3cpp
提出日時 2016-03-14 12:48:58
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 76,460 KB
実行使用メモリ 118,252 KB
最終ジャッジ日時 2024-09-25 02:57:27
合計ジャッジ時間 6,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 418 ms
117,996 KB
testcase_01 AC 74 ms
75,544 KB
testcase_02 AC 74 ms
75,552 KB
testcase_03 AC 75 ms
75,284 KB
testcase_04 AC 74 ms
75,800 KB
testcase_05 AC 75 ms
75,284 KB
testcase_06 AC 76 ms
75,568 KB
testcase_07 AC 75 ms
75,412 KB
testcase_08 AC 73 ms
75,792 KB
testcase_09 AC 75 ms
75,644 KB
testcase_10 AC 75 ms
75,404 KB
testcase_11 AC 75 ms
75,552 KB
testcase_12 AC 75 ms
75,516 KB
testcase_13 AC 438 ms
117,380 KB
testcase_14 AC 440 ms
117,476 KB
testcase_15 AC 442 ms
117,832 KB
testcase_16 AC 443 ms
118,252 KB
testcase_17 AC 426 ms
118,072 KB
testcase_18 AC 432 ms
118,092 KB
testcase_19 AC 445 ms
118,092 KB
testcase_20 AC 448 ms
117,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input = raw_input
range = xrange

H, W = map(int, input().split())
N = int(input())
SK = [input() for i in range(N)]
SK.reverse()
r = 0
c = 0
for sk in SK:
    s, k = sk.split()
    k = int(k)
    if s == "R":
        if k == r:
            c = (c - 1) % W
    else:
        if k == c:
            r = (r - 1) % H
if (r + c) & 1:
    print("black")
else:
    print("white")
0