結果

問題 No.971 いたずらっ子
ユーザー 👑 rin204rin204
提出日時 2022-07-05 21:03:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 110,208 KB
最終ジャッジ日時 2024-11-07 11:51:09
合計ジャッジ時間 4,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
109,824 KB
testcase_01 AC 262 ms
109,952 KB
testcase_02 AC 214 ms
92,928 KB
testcase_03 AC 191 ms
109,312 KB
testcase_04 AC 187 ms
110,208 KB
testcase_05 AC 182 ms
109,568 KB
testcase_06 AC 152 ms
92,032 KB
testcase_07 AC 60 ms
63,360 KB
testcase_08 AC 104 ms
82,944 KB
testcase_09 AC 103 ms
83,456 KB
testcase_10 AC 51 ms
60,032 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 47 ms
58,496 KB
testcase_14 AC 77 ms
69,760 KB
testcase_15 AC 46 ms
58,112 KB
testcase_16 AC 45 ms
52,864 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 42 ms
51,968 KB
testcase_19 AC 41 ms
51,584 KB
testcase_20 AC 41 ms
52,096 KB
testcase_21 AC 42 ms
52,224 KB
testcase_22 AC 41 ms
52,224 KB
testcase_23 AC 41 ms
51,968 KB
testcase_24 AC 41 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
S = [input() for _ in range(h)]
dp = [[0] * w for _ in range(h)]
for i in range(h):
    for j in range(w):
        if S[i][j] == "k":
            add = i + j + 1
        else:
            add = 1
        if i == j == 0:
            continue
        elif i == 0:
            dp[i][j] = dp[i][j - 1] + add
        elif j == 0:
            dp[i][j] = dp[i - 1][j] + add
        else:
            dp[i][j] = min(dp[i - 1][j], dp[i][j - 1]) + add

print(dp[-1][-1])
0