結果

問題 No.2837 Flip Triomino
ユーザー PralaPrala
提出日時 2024-08-09 23:36:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 65,860 KB
最終ジャッジ日時 2024-08-09 23:36:10
合計ジャッジ時間 3,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,872 KB
testcase_01 AC 33 ms
53,496 KB
testcase_02 AC 33 ms
53,712 KB
testcase_03 AC 33 ms
52,456 KB
testcase_04 AC 33 ms
53,260 KB
testcase_05 AC 38 ms
52,584 KB
testcase_06 AC 36 ms
52,816 KB
testcase_07 AC 51 ms
64,036 KB
testcase_08 AC 53 ms
62,824 KB
testcase_09 AC 51 ms
63,180 KB
testcase_10 AC 66 ms
64,268 KB
testcase_11 AC 54 ms
65,004 KB
testcase_12 AC 54 ms
64,480 KB
testcase_13 AC 54 ms
65,064 KB
testcase_14 AC 53 ms
63,676 KB
testcase_15 AC 54 ms
64,160 KB
testcase_16 AC 57 ms
64,676 KB
testcase_17 AC 53 ms
64,284 KB
testcase_18 AC 53 ms
62,976 KB
testcase_19 AC 54 ms
64,348 KB
testcase_20 AC 53 ms
64,832 KB
testcase_21 AC 52 ms
63,980 KB
testcase_22 AC 57 ms
65,860 KB
testcase_23 AC 57 ms
64,804 KB
testcase_24 AC 57 ms
65,352 KB
testcase_25 AC 53 ms
64,608 KB
testcase_26 AC 50 ms
64,308 KB
testcase_27 AC 46 ms
62,728 KB
testcase_28 AC 50 ms
62,264 KB
testcase_29 AC 44 ms
61,500 KB
testcase_30 AC 49 ms
62,988 KB
testcase_31 AC 46 ms
62,580 KB
testcase_32 AC 51 ms
64,356 KB
testcase_33 AC 49 ms
63,464 KB
testcase_34 AC 36 ms
53,528 KB
testcase_35 AC 40 ms
60,580 KB
testcase_36 AC 44 ms
62,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
S = [input() for _ in range(N)]

a = [[0, 0] for _ in range(3)]

for i in range(N):
	for j in range(M):
		if S[i][j] == "B": a[(i+j)%3][0] += 1
		elif S[i][j] == "?": a[(i+j)%3][1] += 1

ans = [[0, 0] for _ in range(3)]
for i in range(3):
	if a[i][1] == 0:
		ans[i][(a[i][0]+1)%2] = -10000000
	else:
		ans[i][0] = a[i][1]-1
		ans[i][1] = a[i][1]-1

#print(ans)
cnt = max(ans[0][0]+ans[1][0]+ans[2][0], ans[0][1]+ans[1][1]+ans[2][1])
if ans[0][0]+ans[1][0]+ans[2][0] == ans[0][1]+ans[1][1]+ans[2][1]: cnt += 1
#print(cnt)
if cnt < 0: print(0)
else: print(pow(2, cnt, 998244353))
0