結果

問題 No.971 いたずらっ子
ユーザー rlangevinrlangevin
提出日時 2023-07-12 12:24:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 260,480 KB
最終ジャッジ日時 2024-09-14 02:19:40
合計ジャッジ時間 6,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
260,480 KB
testcase_01 AC 535 ms
260,372 KB
testcase_02 AC 418 ms
218,860 KB
testcase_03 AC 447 ms
259,584 KB
testcase_04 AC 419 ms
240,128 KB
testcase_05 AC 453 ms
259,892 KB
testcase_06 AC 371 ms
223,104 KB
testcase_07 AC 65 ms
69,700 KB
testcase_08 AC 152 ms
120,356 KB
testcase_09 AC 153 ms
120,616 KB
testcase_10 AC 52 ms
64,000 KB
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 43 ms
58,880 KB
testcase_14 AC 73 ms
72,576 KB
testcase_15 AC 43 ms
58,752 KB
testcase_16 AC 42 ms
52,992 KB
testcase_17 AC 39 ms
51,712 KB
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 39 ms
52,096 KB
testcase_23 AC 39 ms
52,224 KB
testcase_24 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = []
for i in range(H):
    A.append(list(input()))

inf = 10 ** 18
dp = [[inf] * W for i in range(H)]
dp[0][0] = 0
for i in range(H):
    for j in range(W):
        if i != H - 1:
            if A[i + 1][j] == "k":
                dp[i + 1][j] = min(dp[i + 1][j], dp[i][j] + i + j + 1)
            else:
                dp[i + 1][j] = min(dp[i + 1][j], dp[i][j])
        if j != W - 1:
            if A[i][j + 1] == "k":
                dp[i][j + 1] = min(dp[i][j + 1], dp[i][j] + i + j + 1)
            else:
                dp[i][j + 1] = min(dp[i][j + 1], dp[i][j])

print(dp[H-1][W-1] + H + W - 2)
0