結果

問題 No.225 文字列変更(medium)
ユーザー しらっ亭しらっ亭
提出日時 2015-06-17 21:55:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 160,192 KB
最終ジャッジ日時 2024-07-07 03:34:43
合計ジャッジ時間 16,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 WA -
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 25 ms
10,496 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,408 ms
160,192 KB
testcase_14 WA -
testcase_15 AC 1,262 ms
144,060 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1,209 ms
148,092 KB
testcase_21 AC 1,256 ms
151,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(s1, s2):
    d = {}

    for i in range(len(s1)):
        d[i, 0] = i
    for j in range(len(s2)):
        d[0, j] = j

    for i in range(1, len(s1)):
        for j in range(1, len(s2)):
            n = 0 if s1[i] == s2[j] else 1
            d[i, j] = min(d[i - 1, j] + 1, d[i, j - 1] + 1, d[i - 1, j - 1] + n)

    return d[len(s1) - 1, len(s2) - 1]


def main():
    input()
    s1 = input()
    s2 = input()
    print(solve(s1, s2))


if __name__ == '__main__':
    main()
0