結果

問題 No.971 いたずらっ子
ユーザー yomo3yomo3
提出日時 2020-01-22 04:22:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 110,208 KB
最終ジャッジ日時 2024-11-07 11:40:31
合計ジャッジ時間 4,536 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
110,208 KB
testcase_01 AC 289 ms
110,080 KB
testcase_02 AC 232 ms
92,800 KB
testcase_03 AC 236 ms
110,080 KB
testcase_04 AC 227 ms
109,824 KB
testcase_05 AC 223 ms
109,696 KB
testcase_06 AC 185 ms
92,288 KB
testcase_07 AC 64 ms
65,152 KB
testcase_08 AC 116 ms
83,584 KB
testcase_09 AC 115 ms
83,840 KB
testcase_10 AC 59 ms
63,488 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 47 ms
58,496 KB
testcase_14 AC 79 ms
70,272 KB
testcase_15 AC 47 ms
58,240 KB
testcase_16 AC 45 ms
53,504 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 40 ms
52,224 KB
testcase_21 AC 42 ms
51,840 KB
testcase_22 AC 41 ms
51,840 KB
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [input() for _ in range(H)]
#A = [input()[:-1] for _ in range(H)]
INF=10**10
dp = [[INF] * W for _ in range(H)]
dp[0][0] = 0

for h in range(H):
    for w in range(W):
        if h+1 < H:
            dp[h+1][w] = min(dp[h+1][w], dp[h][w] + (h+w+1 if A[h][w]=="k" else 1))
        if w+1 < W:
            dp[h][w+1] = min(dp[h][w+1], dp[h][w] + (h+w+1 if A[h][w]=="k" else 1))

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