結果

問題 No.351 市松スライドパズル
ユーザー GrayCoderGrayCoder
提出日時 2018-05-25 20:41:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 769 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 10,808 KB
実行使用メモリ 117,296 KB
最終ジャッジ日時 2023-09-11 03:30:27
合計ジャッジ時間 25,001 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 17 ms
7,864 KB
testcase_02 AC 16 ms
7,972 KB
testcase_03 AC 16 ms
7,848 KB
testcase_04 AC 16 ms
7,816 KB
testcase_05 AC 16 ms
7,784 KB
testcase_06 AC 17 ms
7,800 KB
testcase_07 AC 16 ms
7,804 KB
testcase_08 AC 16 ms
7,800 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 16 ms
7,804 KB
testcase_12 RE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    H, W = map(int, input().split())
    N = int(input())
    S = [(i, int(j)) for i, j in (input().split() for _ in [0] * N)]

    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)
    S.reverse()
    col, row = 0, 0
    for n in S:
        if n == ('R', row):
            col = col - 1 if col > 0 else W - 1
        elif n == ('C', col):
            row = row - 1 if row > 0 else H - 1
    n = W - 1 - col
    if row % 2:
        i = odd & (2 ** n)
    else:
        i = even & (2 ** n)
    color = ('white', 'black')
    print(color[i])

main()
0