結果

問題 No.224 文字列変更(easy)
ユーザー regeregeregerege
提出日時 2017-05-03 15:38:12
言語 F#
(F# 4.0)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 121 bytes
コンパイル時間 3,635 ms
コンパイル使用メモリ 154,260 KB
実行使用メモリ 25,180 KB
最終ジャッジ日時 2023-09-25 02:23:25
合計ジャッジ時間 6,388 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
23,200 KB
testcase_01 AC 83 ms
20,956 KB
testcase_02 AC 83 ms
23,128 KB
testcase_03 AC 82 ms
25,072 KB
testcase_04 AC 83 ms
25,036 KB
testcase_05 AC 83 ms
23,048 KB
testcase_06 AC 82 ms
23,240 KB
testcase_07 AC 82 ms
23,100 KB
testcase_08 AC 83 ms
23,000 KB
testcase_09 AC 84 ms
25,136 KB
testcase_10 AC 83 ms
21,072 KB
testcase_11 AC 83 ms
22,992 KB
testcase_12 AC 82 ms
22,992 KB
testcase_13 AC 83 ms
23,124 KB
testcase_14 AC 82 ms
25,128 KB
testcase_15 AC 83 ms
25,096 KB
testcase_16 AC 82 ms
25,032 KB
testcase_17 AC 83 ms
25,180 KB
testcase_18 AC 84 ms
23,012 KB
testcase_19 AC 84 ms
25,144 KB
testcase_20 AC 83 ms
25,028 KB
testcase_21 AC 84 ms
22,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let f(a,b)=a<>b
let R() = stdin.ReadLine()
R()|>ignore
Seq.zip (R()) (R())
|> Seq.filter f
|> Seq.length
|> printfn "%d"
0