結果

問題 No.971 いたずらっ子
ユーザー roarisroaris
提出日時 2020-01-18 20:35:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 111,692 KB
最終ジャッジ日時 2024-11-07 11:39:02
合計ジャッジ時間 3,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
111,488 KB
testcase_01 AC 245 ms
111,488 KB
testcase_02 AC 197 ms
98,016 KB
testcase_03 AC 194 ms
111,692 KB
testcase_04 AC 172 ms
93,776 KB
testcase_05 AC 186 ms
111,488 KB
testcase_06 AC 154 ms
97,408 KB
testcase_07 AC 61 ms
63,488 KB
testcase_08 AC 94 ms
84,992 KB
testcase_09 AC 90 ms
84,540 KB
testcase_10 AC 49 ms
60,800 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
52,340 KB
testcase_13 AC 45 ms
58,752 KB
testcase_14 AC 58 ms
64,256 KB
testcase_15 AC 44 ms
58,368 KB
testcase_16 AC 39 ms
52,608 KB
testcase_17 AC 39 ms
51,712 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 42 ms
52,224 KB
testcase_24 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

for i in range(H):
    for j in range(W):
        if i>0:
            dp[i][j] = min(dp[i][j], dp[i-1][j]+(1 if a[i][j]=='.' else i+j+1))
            
        if j>0:
            dp[i][j] = min(dp[i][j], dp[i][j-1]+(1 if a[i][j]=='.' else i+j+1))
    
print(dp[H-1][W-1])
0