結果

問題 No.351 市松スライドパズル
ユーザー ebicochinealebicochineal
提出日時 2016-03-12 13:33:15
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 76,704 KB
実行使用メモリ 134,868 KB
最終ジャッジ日時 2024-09-25 03:18:32
合計ジャッジ時間 6,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 430 ms
134,232 KB
testcase_01 AC 73 ms
75,564 KB
testcase_02 AC 72 ms
75,684 KB
testcase_03 AC 70 ms
75,644 KB
testcase_04 AC 72 ms
75,804 KB
testcase_05 AC 72 ms
75,516 KB
testcase_06 AC 70 ms
75,528 KB
testcase_07 AC 72 ms
75,808 KB
testcase_08 AC 72 ms
75,392 KB
testcase_09 AC 72 ms
75,556 KB
testcase_10 AC 71 ms
75,424 KB
testcase_11 AC 73 ms
75,392 KB
testcase_12 AC 72 ms
75,564 KB
testcase_13 AC 452 ms
133,544 KB
testcase_14 AC 458 ms
133,712 KB
testcase_15 AC 464 ms
134,612 KB
testcase_16 AC 466 ms
134,868 KB
testcase_17 AC 437 ms
134,104 KB
testcase_18 AC 429 ms
134,776 KB
testcase_19 AC 456 ms
134,352 KB
testcase_20 AC 459 ms
134,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, raw_input().split())
N = input()
S = [0]*N
for i in range(N):
    S[i] = raw_input()
_H, _W = H-1, W-1
y = x = 0
for i in range(N-1, -1, -1):
    if ord(S[i][0])-67:
        if int(S[i][2:]) == y: x = (x+_W)%W
    else:
        if int(S[i][2:]) == x: y = (y+_H)%H
print('black' if (y+x)%2 else 'white')
0