結果

問題 No.394 ハーフパイプ(1)
ユーザー ichibanshiboriichibanshibori
提出日時 2016-08-13 23:35:59
言語 F#
(F# 4.0)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 10,397 ms
コンパイル使用メモリ 187,544 KB
実行使用メモリ 35,584 KB
最終ジャッジ日時 2024-11-07 16:33:21
合計ジャッジ時間 15,039 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
35,456 KB
testcase_01 AC 365 ms
35,452 KB
testcase_02 AC 370 ms
34,948 KB
testcase_03 AC 370 ms
35,456 KB
testcase_04 AC 367 ms
35,452 KB
testcase_05 AC 370 ms
35,332 KB
testcase_06 AC 365 ms
35,460 KB
testcase_07 AC 364 ms
35,068 KB
testcase_08 AC 367 ms
35,448 KB
testcase_09 AC 369 ms
35,460 KB
testcase_10 AC 366 ms
35,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (241 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 doIt () =
    let S = stdin.ReadLine () |> fun line -> line.Split () |> Seq.map float
    S |> Seq.sort |> Seq.skip 1 |> Seq.take 4 |> Seq.average |> printfn "%.2f"

doIt ()
0