結果

問題 No.275 中央値を求めよ
ユーザー hum_ophum_op
提出日時 2016-04-16 13:07:24
言語 F#
(F# 4.0)
結果
AC  
実行時間 353 ms / 1,000 ms
コード長 284 bytes
コンパイル時間 9,712 ms
コンパイル使用メモリ 195,360 KB
実行使用メモリ 35,584 KB
最終ジャッジ日時 2024-06-24 23:48:05
合計ジャッジ時間 25,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
35,248 KB
testcase_01 AC 352 ms
35,508 KB
testcase_02 AC 347 ms
35,016 KB
testcase_03 AC 346 ms
35,004 KB
testcase_04 AC 352 ms
35,004 KB
testcase_05 AC 345 ms
35,136 KB
testcase_06 AC 346 ms
35,264 KB
testcase_07 AC 351 ms
35,320 KB
testcase_08 AC 347 ms
34,372 KB
testcase_09 AC 353 ms
34,588 KB
testcase_10 AC 349 ms
34,508 KB
testcase_11 AC 344 ms
34,188 KB
testcase_12 AC 347 ms
35,064 KB
testcase_13 AC 349 ms
34,600 KB
testcase_14 AC 348 ms
35,248 KB
testcase_15 AC 353 ms
34,952 KB
testcase_16 AC 349 ms
34,964 KB
testcase_17 AC 347 ms
35,224 KB
testcase_18 AC 351 ms
34,644 KB
testcase_19 AC 349 ms
35,460 KB
testcase_20 AC 350 ms
34,784 KB
testcase_21 AC 347 ms
35,032 KB
testcase_22 AC 347 ms
35,452 KB
testcase_23 AC 349 ms
34,400 KB
testcase_24 AC 350 ms
34,520 KB
testcase_25 AC 349 ms
34,684 KB
testcase_26 AC 352 ms
34,552 KB
testcase_27 AC 350 ms
35,072 KB
testcase_28 AC 342 ms
35,252 KB
testcase_29 AC 344 ms
35,432 KB
testcase_30 AC 350 ms
35,144 KB
testcase_31 AC 351 ms
34,812 KB
testcase_32 AC 349 ms
35,380 KB
testcase_33 AC 353 ms
35,220 KB
testcase_34 AC 350 ms
34,864 KB
testcase_35 AC 350 ms
34,928 KB
testcase_36 AC 353 ms
35,184 KB
testcase_37 AC 347 ms
34,380 KB
testcase_38 AC 344 ms
35,584 KB
testcase_39 AC 348 ms
34,512 KB
testcase_40 AC 343 ms
35,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (237 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 No275 () =
    let N = int <| Console.ReadLine()
    let A = (fun e-> Console.ReadLine().Split(' ') |> Array.map float |> Array.sort) ()
    if N % 2 <> 0 then
        printfn "%f" A.[N/2]
    else
        printfn "%f" <| (A.[N/2] + A.[N/2-1]) / 2.

    ()

No275 ()
0