結果

問題 No.2838 Diagonals
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-08-09 22:44:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 3,964 ms
コンパイル使用メモリ 261,308 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-09 22:44:49
合計ジャッジ時間 4,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
int main () {
	int H, W;
	cin >> H >> W;
	mint ans = 1;
	char A[555][555];
	for (int i = 0; i <= H; i ++) {
		for (int j = 0; j <= W; j ++) {
			if (min(i, j) == 0) {
				A[i][j] = '.';
			} else {
				cin >> A[i][j];
				if (A[i][j] == '#') {
					ans *= 2;
					if (A[i][j - 1] == '.' || A[i - 1][j] == '.') {
						ans *= 2;
					}
				}
			}
		}
	}
	cout << ans.val() << endl;
}
0