結果

問題 No.275 中央値を求めよ
ユーザー chike_pluschike_plus
提出日時 2019-03-19 13:30:09
言語 F#
(F# 4.0)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 350 bytes
コンパイル時間 18,839 ms
コンパイル使用メモリ 198,248 KB
実行使用メモリ 31,600 KB
最終ジャッジ日時 2024-09-13 19:57:57
合計ジャッジ時間 11,061 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
31,360 KB
testcase_01 AC 63 ms
30,976 KB
testcase_02 AC 63 ms
30,976 KB
testcase_03 AC 63 ms
31,104 KB
testcase_04 AC 63 ms
31,092 KB
testcase_05 AC 63 ms
30,848 KB
testcase_06 AC 64 ms
31,356 KB
testcase_07 AC 63 ms
31,360 KB
testcase_08 AC 64 ms
31,232 KB
testcase_09 AC 64 ms
31,104 KB
testcase_10 AC 64 ms
30,976 KB
testcase_11 AC 60 ms
30,828 KB
testcase_12 AC 62 ms
31,356 KB
testcase_13 AC 62 ms
30,848 KB
testcase_14 AC 63 ms
31,232 KB
testcase_15 AC 65 ms
31,360 KB
testcase_16 AC 65 ms
31,104 KB
testcase_17 AC 64 ms
31,104 KB
testcase_18 AC 64 ms
31,232 KB
testcase_19 AC 63 ms
30,976 KB
testcase_20 AC 65 ms
31,352 KB
testcase_21 AC 64 ms
31,488 KB
testcase_22 AC 65 ms
31,360 KB
testcase_23 AC 63 ms
31,348 KB
testcase_24 AC 65 ms
31,488 KB
testcase_25 AC 64 ms
31,100 KB
testcase_26 AC 64 ms
31,600 KB
testcase_27 AC 64 ms
30,976 KB
testcase_28 AC 62 ms
31,104 KB
testcase_29 AC 63 ms
31,360 KB
testcase_30 AC 63 ms
30,976 KB
testcase_31 AC 63 ms
31,232 KB
testcase_32 AC 63 ms
31,224 KB
testcase_33 AC 64 ms
31,104 KB
testcase_34 AC 62 ms
31,232 KB
testcase_35 AC 64 ms
31,348 KB
testcase_36 AC 63 ms
31,220 KB
testcase_37 AC 64 ms
31,484 KB
testcase_38 AC 64 ms
31,232 KB
testcase_39 AC 63 ms
31,220 KB
testcase_40 AC 63 ms
31,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (313 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
  |> 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