結果

問題 No.2837 Flip Triomino
ユーザー chineristACchineristAC
提出日時 2024-08-09 23:00:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,502 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-08-09 23:00:52
合計ジャッジ時間 3,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,936 KB
testcase_01 AC 49 ms
56,064 KB
testcase_02 AC 47 ms
55,936 KB
testcase_03 AC 48 ms
56,064 KB
testcase_04 AC 48 ms
56,064 KB
testcase_05 AC 48 ms
55,808 KB
testcase_06 AC 49 ms
55,936 KB
testcase_07 AC 62 ms
65,024 KB
testcase_08 AC 59 ms
64,640 KB
testcase_09 AC 57 ms
64,512 KB
testcase_10 AC 66 ms
65,920 KB
testcase_11 AC 64 ms
65,792 KB
testcase_12 AC 64 ms
66,048 KB
testcase_13 AC 62 ms
65,792 KB
testcase_14 AC 62 ms
65,920 KB
testcase_15 AC 64 ms
66,048 KB
testcase_16 AC 66 ms
66,560 KB
testcase_17 AC 62 ms
66,560 KB
testcase_18 AC 60 ms
65,536 KB
testcase_19 AC 62 ms
66,048 KB
testcase_20 AC 59 ms
65,536 KB
testcase_21 AC 62 ms
65,792 KB
testcase_22 AC 74 ms
67,072 KB
testcase_23 AC 70 ms
66,816 KB
testcase_24 AC 67 ms
66,944 KB
testcase_25 AC 64 ms
66,560 KB
testcase_26 AC 63 ms
66,304 KB
testcase_27 AC 57 ms
65,152 KB
testcase_28 AC 54 ms
64,512 KB
testcase_29 AC 55 ms
64,512 KB
testcase_30 AC 59 ms
65,664 KB
testcase_31 AC 57 ms
64,896 KB
testcase_32 AC 61 ms
65,664 KB
testcase_33 AC 60 ms
65,280 KB
testcase_34 AC 46 ms
56,064 KB
testcase_35 AC 54 ms
63,360 KB
testcase_36 AC 57 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def check(N,M):
    domino = [[(0,0),(1,0),(2,0)],[(0,0),(0,1),(0,2)],[(0,0),(1,0),(1,1)],[(0,0),(0,1),(1,1)]]
    base = []

    for i in range(N):
        for j in range(M):
            for D in domino:
                b = 0
                for dx,dy in D:
                    if 0 <= i+dx < N and 0 <= j+dy < M:
                        b |= 1<<(M*(i+dx)+j+dy)
                    else:
                        break
                else:
                    for e in base:
                        b = min(b,b^e)
                    if b!=0:
                        base.append(b)
    
    return len(base)

mod = 998244353

def solve(N,M,S):
    B_cnt = [0] * 3
    F_cnt = [0] * 3
    for i in range(N):
        for j in range(M):
            if S[i][j] == "?":
                F_cnt[(i+j)%3] += 1
            elif S[i][j] == "B":
                B_cnt[(i+j)%3] ^= 1
    
    
    res = 0
    for p in range(2):
        tmp = 1
        for r in range(3):
            if B_cnt[r]!=p and F_cnt[r] == 0:
                tmp = 0
            elif F_cnt[r]!=0:
                tmp *= pow(2,F_cnt[r]-1,mod)
                tmp %= mod
        res += tmp
        res %= mod
    
    return res

N,M = mi()
S = [input() for i in range(N)]
print(solve(N,M,S))
0