結果

問題 No.476 正しくない平均
ユーザー hum_ophum_op
提出日時 2017-04-15 20:57:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 11,747 ms
コンパイル使用メモリ 187,612 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-07-18 18:04:23
合計ジャッジ時間 15,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
32,128 KB
testcase_01 AC 78 ms
32,128 KB
testcase_02 AC 78 ms
32,256 KB
testcase_03 AC 78 ms
32,128 KB
testcase_04 AC 79 ms
32,128 KB
testcase_05 AC 78 ms
32,256 KB
testcase_06 AC 78 ms
32,000 KB
testcase_07 AC 75 ms
32,256 KB
testcase_08 AC 78 ms
32,040 KB
testcase_09 AC 79 ms
32,124 KB
testcase_10 AC 76 ms
32,256 KB
testcase_11 AC 78 ms
32,256 KB
testcase_12 AC 78 ms
32,000 KB
testcase_13 AC 78 ms
32,124 KB
testcase_14 AC 79 ms
32,220 KB
testcase_15 AC 79 ms
31,872 KB
testcase_16 AC 79 ms
32,000 KB
testcase_17 AC 78 ms
32,000 KB
testcase_18 AC 77 ms
32,128 KB
testcase_19 AC 78 ms
32,128 KB
testcase_20 AC 78 ms
32,256 KB
testcase_21 AC 78 ms
32,256 KB
testcase_22 AC 79 ms
32,224 KB
testcase_23 AC 79 ms
31,872 KB
testcase_24 AC 78 ms
32,000 KB
testcase_25 AC 80 ms
32,128 KB
testcase_26 AC 79 ms
32,128 KB
testcase_27 AC 78 ms
32,256 KB
testcase_28 AC 78 ms
32,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (310 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 No476 () =
    let IN = Console.ReadLine().Split(' ')
    let n = int <| IN.[0]
    let a = int <| IN.[1]
    let x = Console.ReadLine().Split(' ') |> Array.map (fun xi-> Double.Parse xi)

    let getSum s x = s + x
    let average = x |> Array.reduce getSum |> (fun sum-> sum / (float)x.Length)

    if (float)a = average then
        printfn "YES"
    else
        printfn "NO"

    ()

No476 ()
0