結果

問題 No.410 出会い
ユーザー hum_ophum_op
提出日時 2016-08-19 10:40:57
言語 F#
(F# 4.0)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 7,795 ms
コンパイル使用メモリ 182,792 KB
実行使用メモリ 36,172 KB
最終ジャッジ日時 2024-06-28 11:09:20
合計ジャッジ時間 16,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
35,784 KB
testcase_01 AC 347 ms
35,912 KB
testcase_02 AC 347 ms
36,172 KB
testcase_03 AC 348 ms
36,152 KB
testcase_04 AC 349 ms
35,884 KB
testcase_05 AC 348 ms
36,168 KB
testcase_06 AC 348 ms
35,896 KB
testcase_07 AC 348 ms
35,432 KB
testcase_08 AC 344 ms
36,156 KB
testcase_09 AC 346 ms
35,912 KB
testcase_10 AC 344 ms
36,172 KB
testcase_11 AC 345 ms
35,916 KB
testcase_12 AC 348 ms
36,048 KB
testcase_13 AC 349 ms
36,044 KB
testcase_14 AC 346 ms
36,148 KB
testcase_15 AC 347 ms
35,920 KB
testcase_16 AC 345 ms
35,920 KB
testcase_17 AC 346 ms
35,788 KB
testcase_18 AC 348 ms
36,168 KB
testcase_19 AC 344 ms
36,044 KB
testcase_20 AC 345 ms
36,044 KB
testcase_21 AC 347 ms
36,168 KB
testcase_22 AC 346 ms
35,920 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (263 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 No410 () =
    let P = Console.ReadLine().Split(' ')
    let Q = Console.ReadLine().Split(' ')
    let s = Math.Abs(((Double.Parse P.[0]) - (Double.Parse Q.[0])))
    let s = s + Math.Abs((Double.Parse P.[1] - (Double.Parse Q.[1])))
    let s = s / 2.0
    printfn "%f" s
    ()

No410 ()
0