結果

問題 No.971 いたずらっ子
ユーザー H3PO4H3PO4
提出日時 2021-07-26 09:25:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 112,000 KB
最終ジャッジ日時 2024-11-07 11:49:31
合計ジャッジ時間 5,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
111,872 KB
testcase_01 AC 353 ms
112,000 KB
testcase_02 AC 292 ms
103,808 KB
testcase_03 AC 298 ms
111,744 KB
testcase_04 AC 285 ms
110,208 KB
testcase_05 AC 280 ms
112,000 KB
testcase_06 AC 233 ms
104,192 KB
testcase_07 AC 62 ms
63,616 KB
testcase_08 AC 130 ms
84,736 KB
testcase_09 AC 126 ms
84,352 KB
testcase_10 AC 51 ms
61,952 KB
testcase_11 AC 42 ms
52,224 KB
testcase_12 AC 42 ms
51,584 KB
testcase_13 AC 49 ms
59,008 KB
testcase_14 AC 76 ms
68,736 KB
testcase_15 AC 49 ms
59,136 KB
testcase_16 AC 47 ms
53,376 KB
testcase_17 AC 42 ms
51,968 KB
testcase_18 AC 42 ms
52,096 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 43 ms
52,096 KB
testcase_21 AC 43 ms
51,968 KB
testcase_22 AC 43 ms
52,224 KB
testcase_23 AC 41 ms
51,584 KB
testcase_24 AC 42 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

H, W = map(int, input().split())
A = [input() for _ in range(H)]

INF = 10 ** 18

table = [[INF] * (W + 1) for _ in range(H + 1)]
table[1][1] = 0
it = itertools.product(range(H), range(W))
next(it)
for h, w in it:
    tmp = min(table[h][w + 1], table[h + 1][w]) + 1
    if A[h][w] == 'k':
        tmp += h + w
    table[h + 1][w + 1] = tmp
print(table[-1][-1])
0