結果

問題 No.410 出会い
ユーザー LeonardoneLeonardone
提出日時 2016-08-13 05:55:18
言語 F#
(F# 4.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 7,754 ms
コンパイル使用メモリ 189,840 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-06-28 11:03:56
合計ジャッジ時間 11,550 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
32,128 KB
testcase_01 AC 103 ms
32,376 KB
testcase_02 AC 102 ms
32,220 KB
testcase_03 AC 101 ms
32,512 KB
testcase_04 AC 102 ms
32,384 KB
testcase_05 AC 102 ms
32,384 KB
testcase_06 AC 107 ms
32,640 KB
testcase_07 AC 103 ms
32,384 KB
testcase_08 AC 103 ms
32,384 KB
testcase_09 AC 102 ms
32,256 KB
testcase_10 AC 103 ms
32,384 KB
testcase_11 AC 102 ms
32,256 KB
testcase_12 AC 101 ms
32,256 KB
testcase_13 AC 101 ms
32,512 KB
testcase_14 AC 101 ms
32,256 KB
testcase_15 AC 103 ms
32,384 KB
testcase_16 AC 104 ms
32,220 KB
testcase_17 AC 101 ms
32,384 KB
testcase_18 AC 102 ms
32,128 KB
testcase_19 AC 102 ms
32,220 KB
testcase_20 AC 102 ms
32,384 KB
testcase_21 AC 102 ms
32,384 KB
testcase_22 AC 103 ms
32,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (246 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 #

// yukicoder My Practice
// author: Leonardone @ NEETSDKASU

let get() =
    stdin.ReadToEnd().Trim().Split [|' '; '\n'|]
    |> Array.map float
    |> fun xyxy ->
        match xyxy with
        | [|px; py; qx; qy|] -> px, py, qx, qy
        | _ -> failwith "Error"

let solve(Px, Py, Qx, Qy) =
    let diff k = abs << (-) k
    diff Px Qx + diff Py Qy |> (/) <| 2.0

[<EntryPoint>]
let main _ =
    printfn "%A" << solve << get <| ()
    0
    
0