結果

問題 No.2837 Flip Triomino
ユーザー suosuo
提出日時 2024-07-26 17:19:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 69,824 KB
最終ジャッジ日時 2024-07-26 17:19:30
合計ジャッジ時間 3,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,528 KB
testcase_01 AC 35 ms
54,676 KB
testcase_02 AC 37 ms
57,928 KB
testcase_03 AC 36 ms
52,496 KB
testcase_04 AC 35 ms
53,488 KB
testcase_05 AC 35 ms
53,616 KB
testcase_06 AC 35 ms
53,780 KB
testcase_07 AC 58 ms
65,212 KB
testcase_08 AC 59 ms
65,800 KB
testcase_09 AC 52 ms
65,552 KB
testcase_10 AC 63 ms
66,936 KB
testcase_11 AC 66 ms
67,032 KB
testcase_12 AC 63 ms
67,696 KB
testcase_13 AC 59 ms
67,396 KB
testcase_14 AC 62 ms
68,532 KB
testcase_15 AC 63 ms
69,316 KB
testcase_16 AC 66 ms
69,636 KB
testcase_17 AC 64 ms
68,060 KB
testcase_18 AC 60 ms
66,432 KB
testcase_19 AC 64 ms
67,948 KB
testcase_20 AC 59 ms
66,656 KB
testcase_21 AC 60 ms
67,220 KB
testcase_22 AC 67 ms
69,824 KB
testcase_23 AC 66 ms
69,700 KB
testcase_24 AC 66 ms
69,512 KB
testcase_25 AC 65 ms
68,368 KB
testcase_26 AC 71 ms
68,432 KB
testcase_27 AC 58 ms
66,376 KB
testcase_28 AC 56 ms
65,492 KB
testcase_29 AC 53 ms
65,336 KB
testcase_30 AC 58 ms
67,032 KB
testcase_31 AC 55 ms
66,068 KB
testcase_32 AC 55 ms
66,592 KB
testcase_33 AC 57 ms
66,808 KB
testcase_34 AC 37 ms
57,744 KB
testcase_35 AC 44 ms
62,756 KB
testcase_36 AC 54 ms
67,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
s = [input() for i in range(h)]

assert 3 <= h <= 500 and 3 <= w <= 500
for i in range(h):
    for j in range(w):
        assert s[i][j] in ["W", "B", "?"]

q_cnt = [0] * 3
b_cnt = [0] * 3
mod = 998244353

for i in range(h):
    for j in range(w):
        if s[i][j] == "B":
            b_cnt[(i + j) % 3] += 1
        if s[i][j] == "?":
            q_cnt[(i + j) % 3] += 1


ans_o = 1
ans_e = 1
for b, q in zip(b_cnt, q_cnt):
    if b & 1:
        ans_e *= 0 if not q else pow(2, q - 1, mod)
        ans_o *= 1 if not q else pow(2, q - 1, mod)
    else:
        ans_e *= 1 if not q else pow(2, q - 1, mod)
        ans_o *= 0 if not q else pow(2, q - 1, mod)

    ans_e %= mod
    ans_o %= mod

print((ans_e + ans_o) % mod)
0