結果

問題 No.2708 Jewel holder
ユーザー nikoro256nikoro256
提出日時 2024-03-31 13:49:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,864 KB
最終ジャッジ日時 2024-09-30 18:26:44
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 33 ms
51,968 KB
testcase_06 AC 34 ms
52,480 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 35 ms
52,736 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 35 ms
52,480 KB
testcase_12 AC 35 ms
52,352 KB
testcase_13 AC 36 ms
52,480 KB
testcase_14 AC 34 ms
52,352 KB
testcase_15 AC 34 ms
52,352 KB
testcase_16 AC 34 ms
52,224 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=10
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