結果

問題 No.2837 Flip Triomino
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-09 23:53:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 68,632 KB
最終ジャッジ日時 2024-08-09 23:53:11
合計ジャッジ時間 3,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,528 KB
testcase_01 AC 34 ms
53,348 KB
testcase_02 AC 34 ms
53,356 KB
testcase_03 AC 33 ms
52,584 KB
testcase_04 WA -
testcase_05 AC 33 ms
53,440 KB
testcase_06 AC 34 ms
53,224 KB
testcase_07 AC 48 ms
64,776 KB
testcase_08 WA -
testcase_09 AC 49 ms
64,744 KB
testcase_10 AC 54 ms
65,088 KB
testcase_11 AC 51 ms
66,016 KB
testcase_12 AC 53 ms
65,492 KB
testcase_13 AC 51 ms
65,792 KB
testcase_14 AC 54 ms
67,084 KB
testcase_15 AC 52 ms
65,724 KB
testcase_16 WA -
testcase_17 AC 52 ms
67,132 KB
testcase_18 AC 52 ms
65,832 KB
testcase_19 AC 53 ms
66,676 KB
testcase_20 AC 51 ms
65,600 KB
testcase_21 AC 53 ms
66,508 KB
testcase_22 AC 57 ms
68,068 KB
testcase_23 AC 58 ms
67,508 KB
testcase_24 AC 58 ms
67,524 KB
testcase_25 AC 57 ms
67,800 KB
testcase_26 AC 55 ms
66,608 KB
testcase_27 AC 50 ms
64,764 KB
testcase_28 AC 47 ms
65,308 KB
testcase_29 AC 47 ms
64,340 KB
testcase_30 AC 52 ms
65,792 KB
testcase_31 AC 51 ms
64,572 KB
testcase_32 AC 51 ms
65,468 KB
testcase_33 AC 51 ms
66,096 KB
testcase_34 AC 35 ms
52,508 KB
testcase_35 AC 42 ms
59,920 KB
testcase_36 AC 50 ms
64,984 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
print(g)
0