結果

問題 No.971 いたずらっ子
ユーザー 👑 KazunKazun
提出日時 2022-01-03 02:38:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 175,956 KB
最終ジャッジ日時 2024-11-07 11:50:23
合計ジャッジ時間 6,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
175,956 KB
testcase_01 AC 534 ms
175,672 KB
testcase_02 AC 418 ms
139,008 KB
testcase_03 AC 368 ms
167,808 KB
testcase_04 AC 344 ms
161,920 KB
testcase_05 AC 356 ms
168,064 KB
testcase_06 AC 299 ms
148,992 KB
testcase_07 AC 84 ms
75,136 KB
testcase_08 AC 150 ms
93,824 KB
testcase_09 AC 145 ms
93,696 KB
testcase_10 AC 63 ms
67,328 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 50 ms
60,672 KB
testcase_14 AC 102 ms
77,312 KB
testcase_15 AC 49 ms
60,032 KB
testcase_16 AC 47 ms
54,144 KB
testcase_17 AC 41 ms
52,096 KB
testcase_18 AC 41 ms
51,840 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 41 ms
51,840 KB
testcase_21 AC 42 ms
52,352 KB
testcase_22 AC 42 ms
52,224 KB
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 42 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A=[]
for _ in range(H):
    A.append(list(map(lambda x:1 if x=="k" else 0,input()))+[-1])
A.append([-1]*(W+1))

inf=float("inf")
DP=[[inf]*W for _ 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]==0:
                DP[i+1][j]=min(DP[i+1][j],DP[i][j]+1)
            else:
                DP[i+1][j]=min(DP[i+1][j],DP[i][j]+1+((i+1)+j))

        if j!=W-1:
            if A[i][j+1]==0:
                DP[i][j+1]=min(DP[i][j+1],DP[i][j]+1)
            else:
                DP[i][j+1]=min(DP[i][j+1],DP[i][j]+1+(i+(j+1)))

print(DP[-1][-1])
0