結果

問題 No.971 いたずらっ子
ユーザー takakintakakin
提出日時 2020-06-21 20:32:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 135,424 KB
最終ジャッジ日時 2024-11-07 11:45:58
合計ジャッジ時間 4,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
130,304 KB
testcase_01 AC 282 ms
130,432 KB
testcase_02 AC 224 ms
113,664 KB
testcase_03 AC 223 ms
134,016 KB
testcase_04 AC 218 ms
135,424 KB
testcase_05 AC 210 ms
134,528 KB
testcase_06 AC 171 ms
116,736 KB
testcase_07 AC 58 ms
62,720 KB
testcase_08 AC 103 ms
85,760 KB
testcase_09 AC 100 ms
84,608 KB
testcase_10 AC 50 ms
60,416 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 47 ms
58,496 KB
testcase_14 AC 58 ms
64,256 KB
testcase_15 AC 48 ms
58,752 KB
testcase_16 AC 42 ms
52,352 KB
testcase_17 AC 41 ms
51,840 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 40 ms
51,840 KB
testcase_20 AC 42 ms
51,840 KB
testcase_21 AC 41 ms
51,968 KB
testcase_22 AC 41 ms
52,096 KB
testcase_23 AC 41 ms
52,096 KB
testcase_24 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
h,w=map(int,input().split())
A=[input() for _ in range(h)]
inf=float("inf")
D=[[inf]*w for _ in range(h)]

for i in range(h):
  for j in range(w):
    if i==0 and j==0:
      D[i][j]=0
    elif i==0:
      D[i][j]=D[i][j-1]+1
    elif j==0:
      D[i][j]=D[i-1][j]+1    
    else:
      D[i][j]=min(D[i][j-1],D[i-1][j])+1
    if A[i][j]=="k":
      D[i][j]+=i+j     
print(D[-1][-1])
0