結果

問題 No.275 中央値を求めよ
ユーザー chike_pluschike_plus
提出日時 2019-03-19 13:29:20
言語 F#
(F# 4.0)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 368 bytes
コンパイル時間 7,129 ms
コンパイル使用メモリ 197,100 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-09-13 19:57:27
合計ジャッジ時間 10,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
31,360 KB
testcase_01 AC 64 ms
31,104 KB
testcase_02 AC 64 ms
30,976 KB
testcase_03 AC 64 ms
30,976 KB
testcase_04 AC 64 ms
31,104 KB
testcase_05 AC 64 ms
30,976 KB
testcase_06 AC 64 ms
31,216 KB
testcase_07 AC 64 ms
31,472 KB
testcase_08 AC 63 ms
31,100 KB
testcase_09 AC 64 ms
31,232 KB
testcase_10 AC 64 ms
30,976 KB
testcase_11 AC 61 ms
30,848 KB
testcase_12 AC 63 ms
31,104 KB
testcase_13 AC 62 ms
31,104 KB
testcase_14 AC 62 ms
31,084 KB
testcase_15 AC 66 ms
31,360 KB
testcase_16 AC 64 ms
31,232 KB
testcase_17 AC 65 ms
31,360 KB
testcase_18 AC 64 ms
31,360 KB
testcase_19 AC 64 ms
31,232 KB
testcase_20 AC 65 ms
31,488 KB
testcase_21 AC 64 ms
31,104 KB
testcase_22 AC 64 ms
31,360 KB
testcase_23 AC 64 ms
31,232 KB
testcase_24 AC 65 ms
31,232 KB
testcase_25 AC 64 ms
31,360 KB
testcase_26 AC 63 ms
31,340 KB
testcase_27 AC 63 ms
31,232 KB
testcase_28 AC 63 ms
31,104 KB
testcase_29 AC 64 ms
31,104 KB
testcase_30 AC 63 ms
31,104 KB
testcase_31 AC 64 ms
31,488 KB
testcase_32 AC 64 ms
31,352 KB
testcase_33 AC 63 ms
31,232 KB
testcase_34 AC 63 ms
31,360 KB
testcase_35 AC 64 ms
31,228 KB
testcase_36 AC 64 ms
31,488 KB
testcase_37 AC 64 ms
31,360 KB
testcase_38 AC 63 ms
31,484 KB
testcase_39 AC 63 ms
31,344 KB
testcase_40 AC 65 ms
31,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (234 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(3,3): warning FS0020: この式の結果の型は 'string' で、暗黙的に無視されます。'ignore' を使用してこの値を明示的に破棄してください (例: 'expr |> ignore')。または 'let' を使用して結果を名前にバインドします (例: 'let result = expr')。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let ``No.275 中央値を求めよ``() =

  stdin.ReadLine();
  stdin.ReadLine().Split(' ')
  |> Array.map (fun s -> s |> int)
  |> Array.sort
  |> Array.toList
  |> fun l -> 
    match (l.Length % 2) with
    | 0 -> (float(l.[l.Length/2-1] ) + float(l.[l.Length/2])) / 2.
    | _ -> float (l.[ l.Length / 2 ])
  |> stdout.WriteLine

``No.275 中央値を求めよ``()
0