結果

問題 No.351 市松スライドパズル
ユーザー akitsugu777akitsugu777
提出日時 2019-07-30 15:21:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 284 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 167,552 KB
最終ジャッジ日時 2024-07-04 18:39:31
合計ジャッジ時間 8,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int,input().split())
n = int(input())
l = [input().split() for _ in range(n)]

x = y = 0
for s, k in l[::-1]:
    k = int(k)
    if s == 'R' and k == y:
        x = (x-1) % w
    elif s == 'C' and k == x:
        y = (y-1) % h

print('white' if (x+y) % 2 == 0 else 'black')
0