結果

問題 No.224 文字列変更(easy)
ユーザー hum_ophum_op
提出日時 2016-04-07 14:51:04
言語 F#
(F# 4.0)
結果
AC  
実行時間 316 ms / 5,000 ms
コード長 274 bytes
コンパイル時間 13,395 ms
コンパイル使用メモリ 184,272 KB
実行使用メモリ 34,856 KB
最終ジャッジ日時 2024-07-18 02:13:47
合計ジャッジ時間 21,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
34,052 KB
testcase_01 AC 312 ms
34,092 KB
testcase_02 AC 314 ms
34,704 KB
testcase_03 AC 305 ms
34,480 KB
testcase_04 AC 304 ms
34,572 KB
testcase_05 AC 306 ms
34,480 KB
testcase_06 AC 302 ms
34,856 KB
testcase_07 AC 312 ms
34,476 KB
testcase_08 AC 299 ms
34,604 KB
testcase_09 AC 302 ms
34,728 KB
testcase_10 AC 305 ms
34,476 KB
testcase_11 AC 302 ms
34,732 KB
testcase_12 AC 314 ms
34,584 KB
testcase_13 AC 300 ms
34,480 KB
testcase_14 AC 305 ms
34,604 KB
testcase_15 AC 301 ms
34,348 KB
testcase_16 AC 305 ms
34,352 KB
testcase_17 AC 314 ms
34,596 KB
testcase_18 AC 310 ms
34,736 KB
testcase_19 AC 316 ms
34,728 KB
testcase_20 AC 315 ms
34,084 KB
testcase_21 AC 304 ms
34,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (645 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

let No224 () =
    let n = int <| Console.ReadLine()
    let S = Console.ReadLine()
    let T = Console.ReadLine()
    let mutable C = 0

    for i in 0..n-1 do
        if S.[i] <> T.[i] then
            C <- C + 1
    done

    printfn "%d" C

    ()

No224 ()
0