結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,992 KB
testcase_01 AC 37 ms
52,540 KB
testcase_02 AC 37 ms
52,960 KB
testcase_03 AC 37 ms
52,572 KB
testcase_04 AC 35 ms
52,876 KB
testcase_05 AC 34 ms
52,504 KB
testcase_06 AC 38 ms
52,468 KB
testcase_07 AC 48 ms
64,772 KB
testcase_08 AC 49 ms
64,932 KB
testcase_09 AC 48 ms
65,848 KB
testcase_10 AC 53 ms
66,324 KB
testcase_11 AC 52 ms
65,396 KB
testcase_12 AC 56 ms
66,140 KB
testcase_13 AC 53 ms
66,740 KB
testcase_14 AC 55 ms
66,132 KB
testcase_15 AC 59 ms
65,792 KB
testcase_16 WA -
testcase_17 AC 58 ms
66,168 KB
testcase_18 AC 54 ms
64,904 KB
testcase_19 AC 58 ms
66,808 KB
testcase_20 AC 56 ms
65,684 KB
testcase_21 AC 53 ms
66,076 KB
testcase_22 AC 58 ms
67,836 KB
testcase_23 AC 62 ms
67,640 KB
testcase_24 AC 55 ms
66,944 KB
testcase_25 AC 56 ms
66,140 KB
testcase_26 AC 57 ms
67,328 KB
testcase_27 AC 53 ms
65,880 KB
testcase_28 AC 49 ms
64,952 KB
testcase_29 AC 52 ms
64,200 KB
testcase_30 AC 56 ms
66,156 KB
testcase_31 AC 55 ms
65,124 KB
testcase_32 AC 55 ms
66,064 KB
testcase_33 AC 52 ms
65,124 KB
testcase_34 AC 35 ms
52,500 KB
testcase_35 AC 43 ms
61,628 KB
testcase_36 AC 52 ms
64,472 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) and f[0]==f[1]==f[2]:
  g*=2
  g%=M
print(g)
0