結果

問題 No.971 いたずらっ子
ユーザー hir355hir355
提出日時 2020-01-17 22:23:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 129,280 KB
最終ジャッジ日時 2024-11-07 11:31:42
合計ジャッジ時間 4,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
124,032 KB
testcase_01 AC 316 ms
124,080 KB
testcase_02 AC 249 ms
107,520 KB
testcase_03 AC 241 ms
127,676 KB
testcase_04 AC 234 ms
129,280 KB
testcase_05 AC 240 ms
128,008 KB
testcase_06 AC 198 ms
110,464 KB
testcase_07 AC 58 ms
64,768 KB
testcase_08 AC 104 ms
82,816 KB
testcase_09 AC 106 ms
83,584 KB
testcase_10 AC 51 ms
61,696 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 45 ms
59,264 KB
testcase_14 AC 72 ms
71,680 KB
testcase_15 AC 46 ms
58,624 KB
testcase_16 AC 44 ms
53,120 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 41 ms
51,968 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 41 ms
52,096 KB
testcase_21 AC 41 ms
52,352 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
s=[input()for _ in range(h)]
dp=[[float('inf')]*w for _ in range(h)]
dp[0][0]=0
for i in range(h):
  for j in range(w):
    if s[i][j]=='k':
      cost=i+j+1
    else:
      cost=1
    if i>0:
      dp[i][j]=min(dp[i][j],dp[i-1][j]+cost)
    if j>0:
      dp[i][j]=min(dp[i][j],dp[i][j-1]+cost)
print(dp[h-1][w-1])
0