結果

問題 No.225 文字列変更(medium)
ユーザー moriiforfunmoriiforfun
提出日時 2018-06-13 00:18:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,039 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-30 13:59:05
合計ジャッジ時間 11,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 405 ms
22,144 KB
testcase_01 AC 709 ms
32,128 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 890 ms
35,712 KB
testcase_13 AC 1,039 ms
42,368 KB
testcase_14 AC 984 ms
40,576 KB
testcase_15 AC 735 ms
25,856 KB
testcase_16 AC 977 ms
39,936 KB
testcase_17 AC 737 ms
25,984 KB
testcase_18 AC 804 ms
30,848 KB
testcase_19 AC 1,011 ms
40,192 KB
testcase_20 AC 844 ms
33,024 KB
testcase_21 AC 948 ms
38,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

suteru=input()
S=input()
T=input()
ls = len(S)
lt = len(T)
dp = [[0]*(ls+1) for _ in range(lt+1)]
for i in range(lt+1):
    dp[i][0] = i
for j in range(ls+1):
    dp[0][j] = j

for i in range(1,lt+1):
    for j in range(1,ls+1):
        if S[j-1] == T[i-1]:
            dp[i][j] = dp[i-1][j-1]
        else:
            dp[i][j] = min(dp[i-1][j],dp[i][j-1],dp[i-1][j-1]) + 1
print(dp[lt][ls])
0