結果

問題 No.410 出会い
ユーザー Nobita GomuNobita Gomu
提出日時 2017-10-05 14:15:29
言語 F#
(F# 4.0)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 13,851 ms
コンパイル使用メモリ 190,772 KB
実行使用メモリ 35,300 KB
最終ジャッジ日時 2024-06-28 11:25:36
合計ジャッジ時間 17,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
35,040 KB
testcase_01 AC 353 ms
35,048 KB
testcase_02 AC 356 ms
35,296 KB
testcase_03 AC 354 ms
35,168 KB
testcase_04 AC 355 ms
35,044 KB
testcase_05 AC 352 ms
35,296 KB
testcase_06 AC 350 ms
35,296 KB
testcase_07 AC 357 ms
35,172 KB
testcase_08 AC 351 ms
35,168 KB
testcase_09 AC 352 ms
35,160 KB
testcase_10 AC 352 ms
35,040 KB
testcase_11 AC 352 ms
35,164 KB
testcase_12 AC 355 ms
35,044 KB
testcase_13 AC 355 ms
35,168 KB
testcase_14 AC 354 ms
35,140 KB
testcase_15 AC 357 ms
34,912 KB
testcase_16 AC 351 ms
35,040 KB
testcase_17 AC 350 ms
34,912 KB
testcase_18 AC 355 ms
35,044 KB
testcase_19 AC 350 ms
35,292 KB
testcase_20 AC 350 ms
35,300 KB
testcase_21 AC 348 ms
35,168 KB
testcase_22 AC 348 ms
35,164 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (312 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 (s:string) = s.Split ' ' |> Seq.map float

Seq.zip (stdin.ReadLine () |> f) (stdin.ReadLine () |> f)
|> Seq.map (fun e -> abs ((fst e) - (snd e)))
|> Seq.sum
|> fun n -> n / 2.0
|> printfn "%f"
0