結果
問題 | No.225 文字列変更(medium) |
ユーザー | konsin_tokage |
提出日時 | 2018-03-28 10:52:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 315 bytes |
コンパイル時間 | 269 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 44,928 KB |
最終ジャッジ日時 | 2024-06-25 13:05:49 |
合計ジャッジ時間 | 15,230 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 848 ms
32,896 KB |
testcase_02 | WA | - |
testcase_03 | AC | 30 ms
10,880 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 31 ms
10,752 KB |
testcase_10 | AC | 31 ms
10,752 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1,195 ms
40,320 KB |
testcase_13 | AC | 1,275 ms
44,928 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1,194 ms
42,240 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 1,228 ms
42,240 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1,208 ms
41,600 KB |
ソースコード
n, m = map(int, input().split()) s = input() t = input() dp = [[1001]*(m+1) for _ in range(n+1)] dp[n][m] = 0 for i in range(n)[::-1]: for j in range(m)[::-1]: dp[i][j] = min( int(s[i]!=t[j]) + dp[i+1][j+1], 1 + dp[i+1][j], 1 + dp[i][j+1]) print(dp[0][0])