結果

問題 No.351 市松スライドパズル
ユーザー ebicochinealebicochineal
提出日時 2016-03-12 07:09:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 802 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 240,880 KB
最終ジャッジ日時 2024-09-25 02:04:49
合計ジャッジ時間 9,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 773 ms
240,880 KB
testcase_01 AC 36 ms
52,496 KB
testcase_02 AC 37 ms
53,312 KB
testcase_03 AC 37 ms
52,748 KB
testcase_04 AC 37 ms
53,084 KB
testcase_05 AC 37 ms
52,128 KB
testcase_06 AC 37 ms
52,368 KB
testcase_07 AC 37 ms
53,604 KB
testcase_08 AC 37 ms
52,324 KB
testcase_09 AC 38 ms
53,844 KB
testcase_10 AC 38 ms
52,724 KB
testcase_11 AC 39 ms
53,012 KB
testcase_12 AC 38 ms
53,200 KB
testcase_13 AC 786 ms
238,588 KB
testcase_14 AC 795 ms
238,708 KB
testcase_15 AC 789 ms
238,864 KB
testcase_16 AC 802 ms
238,760 KB
testcase_17 AC 781 ms
238,456 KB
testcase_18 AC 786 ms
238,752 KB
testcase_19 AC 788 ms
238,796 KB
testcase_20 AC 793 ms
238,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    H, W = map(int, input().split())
    N = int(input())
    R = range(N)
    H, W, N = H-1, W-1, N-1
    S = [input().split() for _ in R]
    y, x = 0, 0
    for i in R:
        j = N-i
        a = int(S[j][1])
        s = S[j][0]
        if s == 'C':
            if x == a:
                y += -1 if y else H
        else:
            if y == a:
                x += -1 if x else W
    print('black' if (y+x)%2 else 'white')

if __name__ == '__main__':
    main()
0