結果

問題 No.2837 Flip Triomino
ユーザー titiatitia
提出日時 2024-08-09 22:57:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 243,740 KB
最終ジャッジ日時 2024-08-09 22:57:34
合計ジャッジ時間 10,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
243,408 KB
testcase_01 AC 219 ms
243,620 KB
testcase_02 AC 216 ms
243,532 KB
testcase_03 AC 240 ms
243,248 KB
testcase_04 AC 212 ms
243,604 KB
testcase_05 AC 214 ms
243,276 KB
testcase_06 AC 214 ms
243,212 KB
testcase_07 AC 219 ms
243,264 KB
testcase_08 AC 279 ms
243,500 KB
testcase_09 AC 220 ms
243,296 KB
testcase_10 AC 224 ms
243,212 KB
testcase_11 AC 224 ms
243,112 KB
testcase_12 AC 240 ms
243,452 KB
testcase_13 AC 268 ms
243,436 KB
testcase_14 AC 241 ms
243,576 KB
testcase_15 AC 243 ms
243,404 KB
testcase_16 AC 249 ms
243,288 KB
testcase_17 AC 246 ms
243,444 KB
testcase_18 AC 253 ms
243,572 KB
testcase_19 AC 248 ms
243,304 KB
testcase_20 AC 225 ms
243,108 KB
testcase_21 AC 242 ms
243,292 KB
testcase_22 AC 266 ms
243,264 KB
testcase_23 AC 251 ms
243,284 KB
testcase_24 AC 247 ms
243,260 KB
testcase_25 AC 249 ms
243,740 KB
testcase_26 AC 247 ms
243,600 KB
testcase_27 AC 259 ms
243,148 KB
testcase_28 AC 219 ms
243,140 KB
testcase_29 AC 226 ms
243,300 KB
testcase_30 AC 240 ms
243,356 KB
testcase_31 AC 223 ms
243,312 KB
testcase_32 AC 258 ms
243,208 KB
testcase_33 AC 221 ms
243,476 KB
testcase_34 AC 212 ms
243,204 KB
testcase_35 AC 216 ms
243,196 KB
testcase_36 AC 222 ms
243,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

FACT=[1]
for i in range(1,2*10**6+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**6,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

N,M=map(int,input().split())

MAP=[input().strip() for i in range(N)]

B=[0,0,0]
Q=[0,0,0]

for i in range(N):
    for j in range(M):
        if MAP[i][j]=="B":
            B[(j+i)%3]+=1
        if MAP[i][j]=="?":
            Q[(j+i)%3]+=1

for i in range(3):
    B[i]%=2

ANS1=1
for i in range(3):
    score=[0,0,0]
    for j in range(3):    
        for k in range(Q[j]+1):
            if k%2==B[j]%2:
                score[j]=score[j]+Combi(Q[j],k)
                score[j]%=mod

    ANS1=score[0]*score[1]*score[2]

for i in range(3):
    B[i]+=1

ANS2=1
for i in range(3):
    score=[0,0,0]
    for j in range(3):    
        for k in range(Q[j]+1):
            if k%2==B[j]%2:
                score[j]=score[j]+Combi(Q[j],k)
                score[j]%=mod

    ANS2=score[0]*score[1]*score[2]

print((ANS1+ANS2)%mod)




0