結果

問題 No.225 文字列変更(medium)
ユーザー rpy3cpprpy3cpp
提出日時 2015-06-13 16:23:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 265 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-07-06 19:40:46
合計ジャッジ時間 8,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 752 ms
31,488 KB
testcase_13 AC 998 ms
40,064 KB
testcase_14 AC 888 ms
37,760 KB
testcase_15 AC 333 ms
19,188 KB
testcase_16 AC 910 ms
37,760 KB
testcase_17 AC 400 ms
19,456 KB
testcase_18 AC 577 ms
25,088 KB
testcase_19 AC 901 ms
38,144 KB
testcase_20 AC 638 ms
28,160 KB
testcase_21 AC 828 ms
35,712 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))
def f(a,b):
 global d
 if d[a][b]>=0:return d[a][b]
 t=f(a-1,b-1) if S[a-1]==T[b-1] else 1+min(f(a-1,b-1),f(a,b-1),f(a-1,b))
 d[a][b]=t
 return t
print(f(n,m))
0