結果

問題 No.2837 Flip Triomino
ユーザー tikuwa_tikuwa_
提出日時 2024-08-11 16:03:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 77,316 KB
最終ジャッジ日時 2024-08-11 16:03:10
合計ジャッジ時間 3,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
62,476 KB
testcase_01 AC 43 ms
62,920 KB
testcase_02 AC 43 ms
63,736 KB
testcase_03 AC 43 ms
62,940 KB
testcase_04 AC 42 ms
63,604 KB
testcase_05 AC 43 ms
62,704 KB
testcase_06 AC 43 ms
62,540 KB
testcase_07 AC 59 ms
74,108 KB
testcase_08 AC 61 ms
74,776 KB
testcase_09 AC 60 ms
74,368 KB
testcase_10 AC 65 ms
74,860 KB
testcase_11 AC 62 ms
75,380 KB
testcase_12 AC 58 ms
75,436 KB
testcase_13 AC 58 ms
73,028 KB
testcase_14 AC 62 ms
74,272 KB
testcase_15 AC 62 ms
74,172 KB
testcase_16 AC 64 ms
75,296 KB
testcase_17 AC 64 ms
74,984 KB
testcase_18 AC 60 ms
74,812 KB
testcase_19 AC 65 ms
74,728 KB
testcase_20 AC 63 ms
73,536 KB
testcase_21 AC 60 ms
73,668 KB
testcase_22 AC 68 ms
77,100 KB
testcase_23 AC 70 ms
77,284 KB
testcase_24 AC 75 ms
77,064 KB
testcase_25 AC 67 ms
77,316 KB
testcase_26 AC 70 ms
77,188 KB
testcase_27 AC 53 ms
69,728 KB
testcase_28 AC 51 ms
66,520 KB
testcase_29 AC 51 ms
66,828 KB
testcase_30 AC 56 ms
69,956 KB
testcase_31 AC 55 ms
70,164 KB
testcase_32 AC 54 ms
68,484 KB
testcase_33 AC 58 ms
73,524 KB
testcase_34 AC 43 ms
63,672 KB
testcase_35 AC 49 ms
66,296 KB
testcase_36 AC 58 ms
71,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
two=[1 for _ in range(10**5+1)]
for i in range(1,10**5) : two[i]=two[i-1]*2%mod

from itertools import product
H,W=map(int,input().split())
A=[input() for _ in range(H)]
xor=[0 for _ in range(9)]
und=[0 for _ in range(9)]
for i,j in product(range(H),range(W)):
    if A[i][j]=="B" : xor[(i%3)*3+j%3]^=1
    elif A[i][j]=="?" : und[(i%3)*3+j%3]+=1

ans=0
def f(n) : return (t>>n)%2
def r(p1,p2,p3) : global t ; t^=(1<<p1) ; t^=(1<<p2) ; t^=(1<<p3)
for t in range(2**9):
    v=t
    if f(2) : r(0,1,2)
    if f(5) : r(3,4,5)
    if f(8) : r(6,7,8)
    if f(6) : r(0,3,6)
    if f(7) : r(1,4,7)
    if t in [0,10,19,25]:
        cnt=1
        for i in range(9):
            if xor[i]!=(v>>i)%2 and und[i]==0 : cnt=0
            else : cnt=cnt*two[und[i]-1]
        ans+=cnt
print(ans%mod)
0