結果

問題 No.225 文字列変更(medium)
ユーザー ntudantuda
提出日時 2024-10-23 23:29:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 347 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 244,244 KB
最終ジャッジ日時 2024-10-23 23:30:00
合計ジャッジ時間 4,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 817 ms
244,244 KB
testcase_01 RE -
testcase_02 AC 44 ms
57,116 KB
testcase_03 AC 43 ms
55,568 KB
testcase_04 AC 45 ms
56,512 KB
testcase_05 AC 43 ms
56,048 KB
testcase_06 AC 49 ms
57,880 KB
testcase_07 AC 46 ms
56,932 KB
testcase_08 AC 44 ms
56,580 KB
testcase_09 AC 46 ms
56,844 KB
testcase_10 AC 52 ms
64,312 KB
testcase_11 AC 47 ms
57,296 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

@lru_cache(maxsize=1000000)
def f(x, y):
    if x == 0:
        return y
    if y == 0:
        return x
    if S[x - 1] == T[y - 1]:
        return f(x - 1, y - 1)
    else:
        return min(f(x - 1, y), f(x, y - 1), f(x - 1, y - 1)) + 1

n, m = map(int, input().split())
S = input()
T = input()
print(f(n, m))
0