結果

問題 No.971 いたずらっ子
ユーザー KodaiKodai
提出日時 2020-04-27 13:27:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 618 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 151,624 KB
最終ジャッジ日時 2024-11-21 13:53:22
合計ジャッジ時間 28,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 59 ms
12,032 KB
testcase_08 AC 1,178 ms
53,376 KB
testcase_09 AC 1,124 ms
51,840 KB
testcase_10 AC 62 ms
11,904 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 38 ms
11,136 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 28 ms
145,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = list(map(int, input().split()))
a_list = [input() for i in range(H)]

dp_list = [[0 for i in range(W)] for j in range(H)]

for h in range(H):
    for w in range(W):
        if h > 0 and w > 0:
            dp_list[h][w] = min([dp_list[h - 1][w], dp_list[h][w - 1]]) + \
                ((1 + h + w) if a_list[h][w] == "k" else 1)
        elif h > 0:
            dp_list[h][w] = dp_list[h - 1][w] + ((1 + h + w) if a_list[h][w] == "k" else 1)
        elif w > 0:
            dp_list[h][w] = dp_list[h][w - 1] + ((1 + h + w) if a_list[h][w] == "k" else 1)
        else:
            continue
print(dp_list[-1][-1])
0