結果

問題 No.2837 Flip Triomino
ユーザー suosuo
提出日時 2024-07-26 17:18:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 781 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 78,664 KB
最終ジャッジ日時 2024-07-26 17:18:55
合計ジャッジ時間 4,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,748 KB
testcase_02 WA -
testcase_03 AC 35 ms
52,984 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,772 KB
testcase_06 WA -
testcase_07 AC 56 ms
64,912 KB
testcase_08 WA -
testcase_09 AC 53 ms
65,172 KB
testcase_10 AC 64 ms
67,084 KB
testcase_11 AC 64 ms
67,044 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 62 ms
66,736 KB
testcase_19 WA -
testcase_20 AC 62 ms
67,016 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 56 ms
66,060 KB
testcase_29 AC 80 ms
64,912 KB
testcase_30 WA -
testcase_31 AC 57 ms
65,660 KB
testcase_32 WA -
testcase_33 AC 61 ms
67,128 KB
testcase_34 WA -
testcase_35 AC 47 ms
62,272 KB
testcase_36 AC 58 ms
65,988 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] == "?":
            print(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