結果

問題 No.225 文字列変更(medium)
ユーザー ntudantuda
提出日時 2024-10-23 23:34:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,027 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 409,376 KB
最終ジャッジ日時 2024-10-23 23:34:48
合計ジャッジ時間 24,929 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 822 ms
244,804 KB
testcase_01 AC 1,467 ms
317,436 KB
testcase_02 AC 44 ms
56,004 KB
testcase_03 AC 43 ms
56,612 KB
testcase_04 AC 46 ms
57,944 KB
testcase_05 AC 44 ms
57,008 KB
testcase_06 AC 48 ms
58,728 KB
testcase_07 AC 44 ms
55,648 KB
testcase_08 AC 42 ms
55,448 KB
testcase_09 AC 48 ms
57,816 KB
testcase_10 AC 53 ms
64,332 KB
testcase_11 AC 47 ms
58,880 KB
testcase_12 AC 2,248 ms
354,124 KB
testcase_13 AC 2,319 ms
409,376 KB
testcase_14 AC 2,121 ms
386,068 KB
testcase_15 AC 1,159 ms
289,068 KB
testcase_16 AC 2,936 ms
376,552 KB
testcase_17 AC 931 ms
278,392 KB
testcase_18 AC 1,341 ms
297,984 KB
testcase_19 AC 3,027 ms
404,688 KB
testcase_20 AC 1,509 ms
331,368 KB
testcase_21 AC 2,030 ms
386,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(200050)
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