結果

問題 No.351 市松スライドパズル
ユーザー GrayCoderGrayCoder
提出日時 2018-05-27 09:14:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 120,576 KB
最終ジャッジ日時 2024-06-28 18:23:30
合計ジャッジ時間 7,556 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 732 ms
118,144 KB
testcase_14 AC 726 ms
118,656 KB
testcase_15 AC 736 ms
120,448 KB
testcase_16 AC 757 ms
120,576 KB
testcase_17 AC 703 ms
120,320 KB
testcase_18 AC 688 ms
120,576 KB
testcase_19 AC 737 ms
120,576 KB
testcase_20 AC 741 ms
120,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def main():
    H, W = map(int, input().split())
    if H == W == 1:
        print('white')
        return
    N = int(input())
    S = list(map(lambda s: s.rstrip(), sys.stdin.readlines()))

    if W == 1:
        even = 0
        odd = 1
    else:
        n = W // 2
        if W % 2:
            even = int('01' * n + '0', 2)
            odd = int('10' * n + '1', 2)
        else:
            even = int('01' * n, 2)
            odd = int('10' * n, 2)

    col, row = 0, 0
    for s in S[::-1]:
        if s == 'R ' + str(row):
            col = col - 1 if col > 0 else W - 1
        elif s == 'C ' + str(col):
            row = row - 1 if row > 0 else H - 1

    n = W - 1 - col
    color = ('white', 'black')
    if row % 2:
        i = bool(odd & (2 ** n))
    else:
        i = bool(even & (2 ** n))
    print(color[i])

main()
0