結果

問題 No.225 文字列変更(medium)
ユーザー rpy3cpprpy3cpp
提出日時 2015-09-08 00:44:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,070 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-06 17:52:52
合計ジャッジ時間 12,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 421 ms
22,016 KB
testcase_01 AC 711 ms
32,128 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 960 ms
35,712 KB
testcase_13 AC 1,070 ms
42,368 KB
testcase_14 AC 1,055 ms
40,576 KB
testcase_15 AC 976 ms
25,728 KB
testcase_16 AC 1,008 ms
40,064 KB
testcase_17 AC 973 ms
25,856 KB
testcase_18 AC 949 ms
30,848 KB
testcase_19 AC 1,003 ms
40,320 KB
testcase_20 AC 932 ms
33,024 KB
testcase_21 AC 1,037 ms
38,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
S=input()
T=input()
d=[[i]+[-1]*m for i in range(n+1)]
d[0]=list(range(m+1))
for a in range(n):
 for b in range(m):d[a+1][b+1]=[1+min(d[a][b],d[a+1][b],d[a][b+1]),d[a][b]][S[a]==T[b]]
print(d[n][m])
0