結果

問題 No.224 文字列変更(easy)
ユーザー nak2yoshi
提出日時 2016-02-24 11:06:37
言語 D
(dmd 2.109.1)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 102,528 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 03:03:05
合計ジャッジ時間 1,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio,
       std.conv,
       std.string,
       std.range,
       std.math,
       std.algorithm;

void main()
{
    auto n = readln.strip.to!int;
    auto S = readln.strip;
    auto T = readln.strip;

    //zip(S, T).count!"a[0]!=a[1]".writeln;
    S.levenshteinDistance(T).writeln;
}
0