結果

問題 No.2430 Damage Zone
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-08-18 23:09:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 93,380 KB
最終ジャッジ日時 2024-05-06 05:41:31
合計ジャッジ時間 3,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
86,052 KB
testcase_01 AC 91 ms
82,004 KB
testcase_02 AC 137 ms
92,128 KB
testcase_03 AC 48 ms
62,336 KB
testcase_04 AC 54 ms
62,848 KB
testcase_05 AC 49 ms
63,232 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 67 ms
71,296 KB
testcase_12 AC 65 ms
71,168 KB
testcase_13 AC 40 ms
57,984 KB
testcase_14 AC 141 ms
93,316 KB
testcase_15 AC 138 ms
93,380 KB
testcase_16 AC 136 ms
93,276 KB
testcase_17 AC 102 ms
79,832 KB
testcase_18 AC 87 ms
77,440 KB
testcase_19 AC 41 ms
57,856 KB
testcase_20 AC 110 ms
83,956 KB
testcase_21 AC 65 ms
71,424 KB
testcase_22 AC 56 ms
67,200 KB
testcase_23 AC 58 ms
67,328 KB
testcase_24 AC 56 ms
66,304 KB
testcase_25 AC 89 ms
81,536 KB
testcase_26 AC 97 ms
84,296 KB
testcase_27 AC 80 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,k = map(int,input().split())
S = [input() for i in range(h)]
mod = 998244353

dp = [[[0]*k for i in range(w)] for j in range(h)]
dp[0][0][k-1] = 1

for i in range(h):
    for j in range(w):
        s = S[i][j]
        if s == "#":
            continue

        for x in range(k):
            if dp[i][j][x] == 0:
                continue

            if i != h-1:
                ns = S[i+1][j]
                if ns == ".":
                    dp[i+1][j][x] += dp[i][j][x]
                    dp[i+1][j][x] %= mod
                elif ns == "o" and x:
                    dp[i+1][j][x-1] += dp[i][j][x]
                    dp[i+1][j][x-1] %= mod


            if j != w-1:
                ns = S[i][j+1]
                if ns == ".":
                    dp[i][j+1][x] += dp[i][j][x]
                    dp[i][j+1][x] %= mod
                elif ns == "o" and x:
                    dp[i][j+1][x-1] += dp[i][j][x]
                    dp[i][j+1][x-1] %= mod


print(sum(dp[-1][-1])%mod)
0