結果

問題 No.2837 Flip Triomino
ユーザー timitimi
提出日時 2024-08-10 01:43:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 256,676 KB
最終ジャッジ日時 2024-08-10 01:43:41
合計ジャッジ時間 10,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
251,976 KB
testcase_01 AC 215 ms
251,716 KB
testcase_02 AC 213 ms
251,808 KB
testcase_03 AC 217 ms
251,984 KB
testcase_04 AC 219 ms
251,780 KB
testcase_05 AC 216 ms
251,856 KB
testcase_06 AC 215 ms
251,976 KB
testcase_07 AC 232 ms
251,448 KB
testcase_08 AC 275 ms
251,372 KB
testcase_09 AC 225 ms
251,528 KB
testcase_10 AC 232 ms
254,228 KB
testcase_11 AC 228 ms
254,040 KB
testcase_12 AC 233 ms
254,228 KB
testcase_13 AC 238 ms
254,188 KB
testcase_14 AC 236 ms
254,092 KB
testcase_15 AC 264 ms
253,940 KB
testcase_16 AC 243 ms
254,224 KB
testcase_17 AC 242 ms
254,212 KB
testcase_18 AC 232 ms
251,372 KB
testcase_19 AC 234 ms
254,304 KB
testcase_20 AC 235 ms
251,328 KB
testcase_21 AC 236 ms
253,760 KB
testcase_22 AC 255 ms
256,552 KB
testcase_23 AC 245 ms
256,676 KB
testcase_24 AC 271 ms
256,376 KB
testcase_25 AC 243 ms
254,224 KB
testcase_26 AC 239 ms
254,228 KB
testcase_27 AC 230 ms
251,404 KB
testcase_28 AC 221 ms
255,116 KB
testcase_29 AC 252 ms
255,128 KB
testcase_30 AC 244 ms
251,424 KB
testcase_31 AC 226 ms
251,472 KB
testcase_32 AC 233 ms
251,468 KB
testcase_33 AC 229 ms
251,636 KB
testcase_34 AC 218 ms
251,524 KB
testcase_35 AC 232 ms
256,288 KB
testcase_36 AC 231 ms
251,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
# D=[[] for i in range(N)]
# for i in range(M):
#   a,b,d=map(int, input().split())
#   a-=1;b-=1
#   D[a].append((d,b));D[b].append((d,a))

A,B=[0]*3,[0]*3
for i in range(N):
  S=input()
  for j in range(M):
    if S[j]=='?':
      A[(i+j)%3]+=1 
    elif S[j]=='B':
      B[(i+j)%3]+=1 

mod=998244353;n=10**6+100
inv_t=[0]+[1]
for i in range(2,n):
  inv_t+=[inv_t[mod%i]*(mod-int(mod/i))%mod]

kai=[1,1]
rev_kai=[1,inv_t[1]]
for i in range(2,n):
  kai.append(kai[-1]*i%mod)
  rev_kai.append(rev_kai[-1]*inv_t[i]%mod)

def cmb(n,r):
  return kai[n]*rev_kai[r]*rev_kai[n-r]%mod

C=[[0,0,0] for i in range(2)]

for i in range(3):
  for j in range(A[i]+1):
    c=cmb(A[i],j)
    C[(B[i]+j)%2][i]+=c 
    C[(B[i]+j)%2][i]%=mod 

ans=0
for i in range(2):
  p,q,r=C[i]
  p*=q 
  p%=mod 
  p*=r 
  p%=mod 
  ans+=p
print(ans%mod)
0