結果

問題 No.2708 Jewel holder
ユーザー nikoro256nikoro256
提出日時 2024-03-31 13:54:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 67,564 KB
最終ジャッジ日時 2024-09-30 18:35:15
合計ジャッジ時間 2,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,144 KB
testcase_01 AC 44 ms
59,852 KB
testcase_02 AC 47 ms
60,288 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
53,224 KB
testcase_06 AC 39 ms
52,672 KB
testcase_07 AC 47 ms
60,880 KB
testcase_08 AC 56 ms
64,236 KB
testcase_09 AC 52 ms
64,172 KB
testcase_10 AC 51 ms
63,480 KB
testcase_11 AC 52 ms
63,404 KB
testcase_12 AC 44 ms
59,748 KB
testcase_13 AC 54 ms
65,652 KB
testcase_14 AC 50 ms
63,668 KB
testcase_15 AC 54 ms
64,544 KB
testcase_16 AC 49 ms
62,884 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=[]
for _ in range(H):
    A.append(input())
lim=120
dp=[[[0]*(lim) for _ in range(W)]  for _ in range(H)]
dp[0][0][0]=1
for i in range(H):
    for j in range(W):
        for k in range(lim-1):
            if A[i][j]=="o":
                if i!=H-1:
                    dp[i+1][j][k+1]+=dp[i][j][k]
                if j!=W-1:
                    dp[i][j+1][k+1]+=dp[i][j][k]
            elif A[i][j]=='#':
                continue
            else:
                if k==0:
                    continue
                if i!=H-1:
                    dp[i+1][j][k-1]+=dp[i][j][k]
                if j!=W-1:
                    dp[i][j+1][k-1]+=dp[i][j][k]
if A[-1][-1]=='o':
    dp[-1][-1]=[0]+dp[-1][-1]
else:
    dp[-1][-1]=dp[-1][-1][1:]
print(sum(dp[-1][-1][1:]))
0