結果
問題 |
No.225 文字列変更(medium)
|
ユーザー |
![]() |
提出日時 | 2016-01-18 17:29:31 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 18 ms / 5,000 ms |
コード長 | 169 bytes |
コンパイル時間 | 828 ms |
コンパイル使用メモリ | 97,036 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 02:49:51 |
合計ジャッジ時間 | 1,906 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
import std.stdio, std.string, std.algorithm; int main() { readln; string s = readln.strip; string t = readln.strip; writeln(levenshteinDistance(s, t)); return 0; }