結果

問題 No.2708 Jewel holder
ユーザー N-noa21N-noa21
提出日時 2024-03-31 19:34:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 65,040 KB
最終ジャッジ日時 2024-09-30 21:19:31
合計ジャッジ時間 1,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,172 KB
testcase_01 AC 40 ms
53,020 KB
testcase_02 AC 41 ms
53,068 KB
testcase_03 AC 41 ms
54,828 KB
testcase_04 AC 39 ms
52,688 KB
testcase_05 AC 40 ms
52,740 KB
testcase_06 AC 40 ms
53,672 KB
testcase_07 AC 47 ms
61,236 KB
testcase_08 AC 50 ms
63,472 KB
testcase_09 AC 52 ms
63,756 KB
testcase_10 AC 51 ms
63,028 KB
testcase_11 AC 51 ms
64,104 KB
testcase_12 AC 44 ms
60,412 KB
testcase_13 AC 51 ms
64,188 KB
testcase_14 AC 49 ms
62,432 KB
testcase_15 AC 53 ms
63,916 KB
testcase_16 AC 46 ms
61,576 KB
testcase_17 AC 52 ms
64,376 KB
testcase_18 AC 52 ms
64,332 KB
testcase_19 AC 54 ms
65,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int, input().split())

A = [list(input()) for i in range(H)]
dp = [[[0]*W for i in range(H)] for j in range(100)]
dp[1][0][0] = 1
for h in range(H):
    for w in range(W):
        for je in reversed(range(100)):
            if h == 0 and w == 0:
                continue


            if A[h][w] == "o":
                tmp = 1

            elif A[h][w] == "x":
                tmp = -1

            else:
                continue


            if 0<=je-tmp<100:
                if h>0:   
                    dp[je][h][w] += dp[je-tmp][h-1][w]
                if w>0:
                    dp[je][h][w] += dp[je-tmp][h][w-1]
ans = 0
for k in range(100):
    ans += dp[k][-1][-1]
print(ans)
0