結果

問題 No.275 中央値を求めよ
ユーザー kuuso1kuuso1
提出日時 2016-08-18 02:23:45
言語 F#
(F# 4.0)
結果
AC  
実行時間 376 ms / 1,000 ms
コード長 422 bytes
コンパイル時間 13,257 ms
コンパイル使用メモリ 196,652 KB
実行使用メモリ 35,276 KB
最終ジャッジ日時 2024-06-25 00:00:17
合計ジャッジ時間 29,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
34,604 KB
testcase_01 AC 353 ms
34,272 KB
testcase_02 AC 355 ms
35,044 KB
testcase_03 AC 357 ms
34,104 KB
testcase_04 AC 354 ms
34,792 KB
testcase_05 AC 352 ms
34,024 KB
testcase_06 AC 351 ms
33,900 KB
testcase_07 AC 348 ms
35,108 KB
testcase_08 AC 350 ms
34,820 KB
testcase_09 AC 354 ms
35,224 KB
testcase_10 AC 357 ms
34,824 KB
testcase_11 AC 346 ms
34,028 KB
testcase_12 AC 353 ms
34,020 KB
testcase_13 AC 350 ms
34,744 KB
testcase_14 AC 349 ms
34,280 KB
testcase_15 AC 356 ms
35,260 KB
testcase_16 AC 356 ms
34,992 KB
testcase_17 AC 354 ms
34,900 KB
testcase_18 AC 350 ms
34,424 KB
testcase_19 AC 358 ms
34,972 KB
testcase_20 AC 352 ms
35,252 KB
testcase_21 AC 357 ms
34,956 KB
testcase_22 AC 354 ms
35,264 KB
testcase_23 AC 376 ms
34,552 KB
testcase_24 AC 363 ms
35,228 KB
testcase_25 AC 358 ms
34,580 KB
testcase_26 AC 357 ms
34,448 KB
testcase_27 AC 358 ms
34,188 KB
testcase_28 AC 348 ms
34,364 KB
testcase_29 AC 363 ms
34,172 KB
testcase_30 AC 353 ms
35,172 KB
testcase_31 AC 356 ms
34,448 KB
testcase_32 AC 354 ms
34,968 KB
testcase_33 AC 348 ms
35,236 KB
testcase_34 AC 347 ms
35,044 KB
testcase_35 AC 354 ms
34,768 KB
testcase_36 AC 350 ms
35,240 KB
testcase_37 AC 361 ms
34,848 KB
testcase_38 AC 365 ms
35,068 KB
testcase_39 AC 356 ms
34,736 KB
testcase_40 AC 356 ms
35,276 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (496 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
type Sol() =
    member this.Solve() = 
        let N = stdin.ReadLine() |> int
        let A = stdin.ReadLine().Split() |> Array.map int |> Array.sort
//        let ans = if (N%2) = 0 then double (A.[N/2]+A.[(N/2)-1])/2.0 else double A.[N/2]
//        printfn "%f" ans
        if (N%2) = 0 then double (A.[N/2]+A.[(N/2)-1])/2.0 else double A.[N/2]
        |> printfn "%f" 
let mySol = new Sol()
mySol.Solve()
0