結果

問題 No.224 文字列変更(easy)
ユーザー regeregeregerege
提出日時 2017-05-03 15:38:12
言語 F#
(F# 4.0)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 121 bytes
コンパイル時間 13,193 ms
コンパイル使用メモリ 186,440 KB
実行使用メモリ 35,000 KB
最終ジャッジ日時 2024-07-18 02:21:55
合計ジャッジ時間 21,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
34,512 KB
testcase_01 AC 304 ms
34,552 KB
testcase_02 AC 301 ms
34,736 KB
testcase_03 AC 309 ms
34,616 KB
testcase_04 AC 311 ms
34,744 KB
testcase_05 AC 334 ms
34,524 KB
testcase_06 AC 333 ms
34,524 KB
testcase_07 AC 335 ms
34,760 KB
testcase_08 AC 342 ms
35,000 KB
testcase_09 AC 325 ms
34,768 KB
testcase_10 AC 323 ms
34,652 KB
testcase_11 AC 313 ms
34,388 KB
testcase_12 AC 321 ms
34,652 KB
testcase_13 AC 307 ms
34,648 KB
testcase_14 AC 311 ms
34,516 KB
testcase_15 AC 314 ms
34,488 KB
testcase_16 AC 308 ms
34,608 KB
testcase_17 AC 308 ms
34,412 KB
testcase_18 AC 309 ms
34,772 KB
testcase_19 AC 313 ms
34,796 KB
testcase_20 AC 310 ms
34,740 KB
testcase_21 AC 306 ms
34,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (394 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 #

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