結果
問題 | No.351 市松スライドパズル |
ユーザー | GrayCoder |
提出日時 | 2018-05-25 20:48:34 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 769 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 256,820 KB |
最終ジャッジ日時 | 2024-06-28 18:04:54 |
合計ジャッジ時間 | 8,907 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 649 ms
254,616 KB |
testcase_01 | AC | 31 ms
51,840 KB |
testcase_02 | AC | 31 ms
51,584 KB |
testcase_03 | AC | 30 ms
52,608 KB |
testcase_04 | AC | 29 ms
52,096 KB |
testcase_05 | AC | 30 ms
52,096 KB |
testcase_06 | AC | 30 ms
51,840 KB |
testcase_07 | AC | 30 ms
52,192 KB |
testcase_08 | AC | 30 ms
52,096 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 32 ms
52,736 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 677 ms
252,968 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 665 ms
252,776 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
ソースコード
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()