結果

問題 No.971 いたずらっ子
ユーザー vwxyzvwxyz
提出日時 2024-05-03 06:45:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 355 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 123,208 KB
最終ジャッジ日時 2024-11-24 04:32:30
合計ジャッジ時間 29,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 70 ms
12,032 KB
testcase_08 AC 1,672 ms
53,248 KB
testcase_09 AC 1,586 ms
51,072 KB
testcase_10 AC 72 ms
11,904 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 36 ms
11,136 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 28 ms
10,880 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 26 ms
116,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=[input() for h in range(H)]
inf=1<<30
dp=[[inf]*W for h in range(H)]
dp[0][0]=0
for h in range(H):
    for w in range(W):
        if h:
            dp[h][w]=min(dp[h][w],dp[h-1][w]+1)
        if w:
            dp[h][w]=min(dp[h][w],dp[h][w-1]+1)
        if A[h][w]=="k":
            dp[h][w]+=h+w
ans=dp[H-1][W-1]
print(ans)
0