結果

問題 No.394 ハーフパイプ(1)
ユーザー Michae'GonMichae'Gon
提出日時 2017-02-28 22:16:11
言語 F#
(F# 4.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 10,800 ms
コンパイル使用メモリ 184,700 KB
実行使用メモリ 35,284 KB
最終ジャッジ日時 2024-06-12 00:33:19
合計ジャッジ時間 15,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
35,152 KB
testcase_01 AC 344 ms
35,284 KB
testcase_02 AC 333 ms
35,148 KB
testcase_03 AC 323 ms
35,156 KB
testcase_04 AC 319 ms
35,024 KB
testcase_05 AC 316 ms
34,272 KB
testcase_06 AC 321 ms
34,884 KB
testcase_07 AC 323 ms
35,028 KB
testcase_08 AC 321 ms
35,028 KB
testcase_09 AC 315 ms
34,764 KB
testcase_10 AC 317 ms
34,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (258 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 #

module Main
open System

Console.WriteLine(
    Console.ReadLine().Split(' ')
        |> Array.map float
        |> Array.sort
        |> Array.tail
        |> Array.rev
        |> Array.tail
        |> Array.fold (fun acc x -> acc + x) 0.0
        |> (fun x -> x / 4.0)
        |> sprintf "%.2f"
)
0