結果

問題 No.2430 Damage Zone
ユーザー ramdosramdos
提出日時 2023-08-11 16:10:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 77,052 KB
最終ジャッジ日時 2024-11-18 11:32:37
合計ジャッジ時間 3,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
76,916 KB
testcase_01 AC 102 ms
76,464 KB
testcase_02 AC 175 ms
76,856 KB
testcase_03 AC 56 ms
66,360 KB
testcase_04 AC 56 ms
66,896 KB
testcase_05 AC 64 ms
70,008 KB
testcase_06 AC 38 ms
52,152 KB
testcase_07 AC 38 ms
52,776 KB
testcase_08 AC 38 ms
52,660 KB
testcase_09 AC 38 ms
52,276 KB
testcase_10 AC 38 ms
53,288 KB
testcase_11 AC 69 ms
73,252 KB
testcase_12 AC 69 ms
71,100 KB
testcase_13 AC 48 ms
61,716 KB
testcase_14 AC 151 ms
77,052 KB
testcase_15 AC 149 ms
76,672 KB
testcase_16 AC 157 ms
76,992 KB
testcase_17 AC 102 ms
76,520 KB
testcase_18 AC 87 ms
76,708 KB
testcase_19 AC 51 ms
64,452 KB
testcase_20 AC 101 ms
76,540 KB
testcase_21 AC 66 ms
71,060 KB
testcase_22 AC 53 ms
63,832 KB
testcase_23 AC 53 ms
63,780 KB
testcase_24 AC 51 ms
63,868 KB
testcase_25 AC 87 ms
76,456 KB
testcase_26 AC 96 ms
76,932 KB
testcase_27 AC 83 ms
76,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K=map(int,input().split())
S = [input() for i in range(H)]
dp_old = [[0 for i in range(W)] for j in range(H)]
ans = 0
for k in range(K):
    dp_new = [[0 for i in range(W)] for j in range(H)]
    if k==0:
        dp_new[0][0]=1
    for i in range(H):
        for j in range(W):
            if S[i][j]=='.':
                if i!=0:
                    dp_new[i][j]=(dp_new[i][j]+dp_new[i-1][j])%998244353
                if j!=0:
                    dp_new[i][j]=(dp_new[i][j]+dp_new[i][j-1])%998244353
            if S[i][j]=='o':
                if i!=0:
                    dp_new[i][j]=(dp_new[i][j]+dp_old[i-1][j])%998244353
                if j!=0:
                    dp_new[i][j]=(dp_new[i][j]+dp_old[i][j-1])%998244353
    dp_old = dp_new
    ans=(ans+dp_old[H-1][W-1])%998244353
print(ans)
0