結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
86,056 KB
testcase_01 AC 85 ms
81,896 KB
testcase_02 AC 125 ms
91,876 KB
testcase_03 AC 48 ms
62,484 KB
testcase_04 AC 53 ms
63,336 KB
testcase_05 AC 51 ms
64,088 KB
testcase_06 AC 40 ms
52,464 KB
testcase_07 AC 37 ms
53,500 KB
testcase_08 AC 37 ms
52,812 KB
testcase_09 AC 34 ms
53,212 KB
testcase_10 AC 36 ms
53,292 KB
testcase_11 AC 62 ms
71,796 KB
testcase_12 AC 64 ms
71,920 KB
testcase_13 AC 39 ms
58,832 KB
testcase_14 AC 130 ms
92,956 KB
testcase_15 AC 132 ms
93,272 KB
testcase_16 AC 126 ms
93,032 KB
testcase_17 AC 99 ms
80,048 KB
testcase_18 AC 80 ms
77,444 KB
testcase_19 AC 38 ms
59,408 KB
testcase_20 AC 100 ms
83,608 KB
testcase_21 AC 60 ms
73,160 KB
testcase_22 AC 52 ms
67,152 KB
testcase_23 AC 54 ms
68,064 KB
testcase_24 AC 52 ms
67,312 KB
testcase_25 AC 82 ms
81,376 KB
testcase_26 AC 90 ms
84,008 KB
testcase_27 AC 76 ms
80,252 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