結果

問題 No.351 市松スライドパズル
ユーザー GrayCoderGrayCoder
提出日時 2018-05-27 10:24:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 10,796 KB
実行使用メモリ 86,548 KB
最終ジャッジ日時 2023-09-11 03:53:27
合計ジャッジ時間 6,491 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,792 KB
testcase_01 AC 17 ms
7,844 KB
testcase_02 AC 16 ms
7,848 KB
testcase_03 AC 16 ms
7,796 KB
testcase_04 AC 16 ms
7,972 KB
testcase_05 AC 15 ms
7,844 KB
testcase_06 AC 16 ms
7,776 KB
testcase_07 AC 16 ms
7,976 KB
testcase_08 AC 16 ms
7,812 KB
testcase_09 AC 16 ms
7,804 KB
testcase_10 AC 16 ms
7,848 KB
testcase_11 AC 16 ms
7,796 KB
testcase_12 AC 16 ms
7,904 KB
testcase_13 AC 565 ms
84,604 KB
testcase_14 AC 571 ms
85,124 KB
testcase_15 AC 577 ms
86,548 KB
testcase_16 AC 575 ms
86,416 KB
testcase_17 AC 527 ms
86,484 KB
testcase_18 AC 527 ms
86,424 KB
testcase_19 AC 577 ms
86,460 KB
testcase_20 AC 577 ms
86,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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

    wb = '01' * (W // 2 + 2)
    even = int(wb[:W], 2)
    odd = int(wb[1:W+1], 2)

    col, row = 0, 0
    for s in S[::-1]:
        s = s.rstrip()
        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