結果

問題 No.971 いたずらっ子
ユーザー daku9640daku9640
提出日時 2020-01-20 03:28:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 518 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 178,592 KB
最終ジャッジ日時 2024-07-02 22:13:29
合計ジャッジ時間 17,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 1,805 ms
131,584 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,829 ms
170,752 KB
testcase_06 AC 1,398 ms
134,656 KB
testcase_07 AC 46 ms
12,160 KB
testcase_08 AC 659 ms
53,248 KB
testcase_09 AC 646 ms
50,944 KB
testcase_10 AC 42 ms
11,904 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 34 ms
11,136 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 26 ms
10,624 KB
testcase_20 AC 28 ms
10,880 KB
testcase_21 AC 27 ms
10,880 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = int(1e7)
def solve():
    H, W = map(int, input().split())
    dp = [[INF] * (W + 2) for _ in range(H + 2)]
    dp[0][1] = -1
    A = ["#" * (W + 2)] + ["#" + input() + "#" for _ in range(H)] + ["#" * (W + 2)]
    for i in range(1, H + 1):
        for j in range(1, W + 1):
            if A[i][j] == ".":
                dp[i][j] = min(dp[i - 1][j], dp[i][j - 1]) + 1
            elif A[i][j] == "k":
                dp[i][j] = min(dp[i - 1][j], dp[i][j - 1]) + (i - 1) + (j - 1) + 1
    print(dp[H][W])
solve()
0