結果

問題 No.2837 Flip Triomino
ユーザー ニックネームニックネーム
提出日時 2024-08-09 22:02:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 30,720 KB
最終ジャッジ日時 2024-08-09 22:03:00
合計ジャッジ時間 8,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 26 ms
11,008 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 323 ms
30,592 KB
testcase_08 AC 494 ms
30,592 KB
testcase_09 AC 267 ms
30,592 KB
testcase_10 AC 303 ms
30,592 KB
testcase_11 AC 301 ms
30,720 KB
testcase_12 AC 273 ms
26,752 KB
testcase_13 AC 211 ms
23,936 KB
testcase_14 AC 260 ms
26,112 KB
testcase_15 AC 252 ms
27,008 KB
testcase_16 AC 298 ms
27,264 KB
testcase_17 AC 306 ms
28,928 KB
testcase_18 AC 239 ms
27,136 KB
testcase_19 AC 287 ms
27,776 KB
testcase_20 AC 230 ms
26,624 KB
testcase_21 AC 242 ms
24,576 KB
testcase_22 AC 357 ms
30,592 KB
testcase_23 AC 346 ms
30,464 KB
testcase_24 AC 354 ms
30,592 KB
testcase_25 AC 341 ms
30,464 KB
testcase_26 AC 337 ms
30,464 KB
testcase_27 AC 131 ms
18,048 KB
testcase_28 AC 55 ms
12,928 KB
testcase_29 AC 69 ms
13,952 KB
testcase_30 AC 138 ms
17,792 KB
testcase_31 AC 164 ms
19,584 KB
testcase_32 AC 94 ms
15,232 KB
testcase_33 AC 227 ms
24,960 KB
testcase_34 AC 29 ms
10,880 KB
testcase_35 AC 40 ms
11,648 KB
testcase_36 AC 161 ms
21,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
s = [input() for _ in range(n)]
nmax = n*m; mod = 998244353; fa = [1]*(nmax+1); fi = [1]*(nmax+1)
for i in range(1,nmax): fa[i+1] = fa[i]*(i+1)%mod
fi[nmax] = pow(fa[nmax],mod-2,mod)
for i in range(nmax,0,-1): fi[i-1] = fi[i]*i%mod
def cmb(n,r): return fa[n]*fi[n-r]%mod*fi[r]%mod if 0<=r<=n else 0
a = [0]*3; b = [0]*3; c = [0]*3; d = [0]*3
for i in range(n):
    for j in range(m):
        if s[i][j]=="B": a[(i+j)%3] += 1
        if s[i][j]=="?": b[(i+j)%3] += 1
for i,v in enumerate(b):
    for j in range(v+1):
        if (a[i]+j)%2: c[i] += cmb(v,j)
        else: d[i] += cmb(v,j)
print((c[0]*c[1]*c[2]+d[0]*d[1]*d[2])%mod)
0