結果

問題 No.2837 Flip Triomino
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-09 23:59:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 67,760 KB
最終ジャッジ日時 2024-08-09 23:59:46
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,508 KB
testcase_01 AC 34 ms
53,344 KB
testcase_02 AC 35 ms
52,328 KB
testcase_03 AC 34 ms
52,396 KB
testcase_04 AC 36 ms
53,684 KB
testcase_05 AC 34 ms
53,184 KB
testcase_06 AC 35 ms
52,992 KB
testcase_07 AC 47 ms
64,408 KB
testcase_08 AC 50 ms
65,596 KB
testcase_09 AC 47 ms
64,848 KB
testcase_10 AC 51 ms
65,536 KB
testcase_11 AC 52 ms
66,316 KB
testcase_12 AC 52 ms
65,872 KB
testcase_13 AC 52 ms
65,900 KB
testcase_14 AC 53 ms
67,056 KB
testcase_15 AC 56 ms
66,116 KB
testcase_16 AC 54 ms
66,116 KB
testcase_17 AC 54 ms
67,428 KB
testcase_18 AC 51 ms
66,040 KB
testcase_19 AC 54 ms
65,812 KB
testcase_20 AC 52 ms
66,528 KB
testcase_21 AC 52 ms
65,904 KB
testcase_22 AC 57 ms
67,532 KB
testcase_23 AC 56 ms
67,012 KB
testcase_24 AC 56 ms
66,936 KB
testcase_25 AC 55 ms
67,760 KB
testcase_26 AC 55 ms
66,712 KB
testcase_27 AC 49 ms
64,920 KB
testcase_28 AC 49 ms
64,204 KB
testcase_29 AC 48 ms
64,212 KB
testcase_30 AC 52 ms
65,252 KB
testcase_31 AC 49 ms
64,404 KB
testcase_32 AC 51 ms
65,960 KB
testcase_33 AC 52 ms
65,940 KB
testcase_34 AC 35 ms
53,352 KB
testcase_35 AC 41 ms
61,048 KB
testcase_36 AC 50 ms
64,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
c=[0]*3
f=[0]*3
for i in range(h):
  s=input()
  for j in range(w):
    c[(i+j)%3]+=s[j]=="?"
    f[(i+j)%3]^=s[j]=="B"
if sum(c[i]==0 and f[i]==0 for i in range(3))>0 and sum(c[i]==0 and f[i]==1 for i in range(3))>0:
  print(0)
  exit()
M=998244353
g=1
for v in c:
  if v>0:
    g*=pow(2,v-1,M)
    g%=M
if all(v>0 for v in c):
  g*=2
  g%=M
print(g)
0