結果

問題 No.225 文字列変更(medium)
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-03-28 10:35:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,928 KB
最終ジャッジ日時 2024-06-25 13:05:25
合計ジャッジ時間 15,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
22,528 KB
testcase_01 AC 895 ms
32,896 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 31 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 1,225 ms
40,448 KB
testcase_13 WA -
testcase_14 AC 1,307 ms
43,392 KB
testcase_15 AC 1,202 ms
34,048 KB
testcase_16 AC 1,292 ms
42,496 KB
testcase_17 AC 1,228 ms
34,176 KB
testcase_18 AC 1,211 ms
37,632 KB
testcase_19 AC 1,252 ms
42,624 KB
testcase_20 WA -
testcase_21 AC 1,265 ms
41,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s = input()
t = input()
dp = [[1001]*(m+1) for _ in range(n+1)]
dp[0][0] = 0
for i in range(1, n+1):
    for j in range(1, m+1):
        dp[i][j] = min(
                int(s[i-1]!=t[j-1]) + dp[i-1][j-1],
                1 + dp[i-1][j],
                1 + dp[i][j-1])
print(dp[n][m])
0