結果

問題 No.2430 Damage Zone
ユーザー 310icecrystal310icecrystal
提出日時 2023-08-18 21:45:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 488 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,420 KB
最終ジャッジ日時 2024-11-28 06:26:23
合計ジャッジ時間 6,530 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 396 ms
99,128 KB
testcase_01 AC 159 ms
82,936 KB
testcase_02 AC 488 ms
115,800 KB
testcase_03 AC 61 ms
64,000 KB
testcase_04 AC 69 ms
66,432 KB
testcase_05 AC 86 ms
72,704 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 111 ms
76,620 KB
testcase_12 AC 107 ms
76,528 KB
testcase_13 AC 55 ms
61,824 KB
testcase_14 AC 473 ms
115,720 KB
testcase_15 AC 451 ms
116,420 KB
testcase_16 AC 460 ms
115,900 KB
testcase_17 AC 265 ms
84,396 KB
testcase_18 AC 110 ms
77,692 KB
testcase_19 AC 46 ms
60,544 KB
testcase_20 AC 288 ms
91,328 KB
testcase_21 AC 88 ms
76,544 KB
testcase_22 AC 77 ms
73,728 KB
testcase_23 AC 74 ms
72,832 KB
testcase_24 AC 73 ms
71,936 KB
testcase_25 AC 185 ms
89,344 KB
testcase_26 AC 206 ms
91,728 KB
testcase_27 AC 181 ms
87,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K = map(int,input().split())
S = [input() for _ in range(H)]
MOD = 998244353

#dp[h][w][k]=マス(h,w)に体力の減少kで行くことができる移動経路の数
dp = [[[0]*K for _ in range(W)] for _ in range(H)]
dp[0][0][0] = 1
for h in range(H):
    for w in range(W):
        for k in range(K):
            if h+1 <= H-1:
                if S[h+1][w] == ".":
                    dp[h+1][w][k] += dp[h][w][k]
                elif S[h+1][w] == "o" and k <= K-2:
                    dp[h+1][w][k+1] += dp[h][w][k]
            if w+1 <= W-1:
                if S[h][w+1] == ".":
                    dp[h][w+1][k] += dp[h][w][k]
                elif S[h][w+1] == "o" and k <= K-2:
                    dp[h][w+1][k+1] += dp[h][w][k]
            dp[h][w][k] %= MOD
ans = 0
for k in range(K):
    ans += dp[H-1][W-1][k]
    ans %= MOD
print(ans)
0