結果

問題 No.971 いたずらっ子
ユーザー convexineqconvexineq
提出日時 2020-01-17 22:02:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 111,724 KB
最終ジャッジ日時 2024-11-07 11:30:32
合計ジャッジ時間 4,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
111,544 KB
testcase_01 AC 264 ms
111,152 KB
testcase_02 AC 219 ms
103,376 KB
testcase_03 AC 220 ms
111,212 KB
testcase_04 AC 210 ms
109,068 KB
testcase_05 AC 218 ms
111,724 KB
testcase_06 AC 186 ms
102,808 KB
testcase_07 AC 55 ms
64,128 KB
testcase_08 AC 100 ms
83,840 KB
testcase_09 AC 99 ms
83,712 KB
testcase_10 AC 52 ms
63,616 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 48 ms
59,520 KB
testcase_14 AC 61 ms
66,048 KB
testcase_15 AC 47 ms
59,392 KB
testcase_16 AC 41 ms
52,480 KB
testcase_17 AC 40 ms
51,712 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 41 ms
52,224 KB
testcase_20 AC 40 ms
52,096 KB
testcase_21 AC 41 ms
52,480 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 40 ms
51,968 KB
testcase_24 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#######################################################
# coding: utf-8
# Your code here!
import sys
sys.setrecursionlimit(10**6)
readline = sys.stdin.readline
read = sys.stdin.read

#n,m,*d= [int(i) for i in read().split()]

#a,t,k = [int(i) for i in readline().split()]

h,w = [int(i) for i in readline().split()]
bbb = read().split()
b = [[i+j+1 if bij=="k" else 1 for j,bij in enumerate(bi)] for i,bi in enumerate(bbb)]
b[0][0] = 0
INF = 10**9

dp = [0]+[INF]*(w-1)
for bi in b:
    for j, bij in enumerate(bi):
        if j:
            dp[j] = min(dp[j],dp[j-1]) + bij
        else:
            dp[j] += bij
    

print(dp[-1])






0