結果

問題 No.476 正しくない平均
ユーザー hum_ophum_op
提出日時 2017-04-15 20:58:08
言語 F#
(F# 4.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 16,498 ms
コンパイル使用メモリ 185,436 KB
実行使用メモリ 32,384 KB
最終ジャッジ日時 2024-07-18 18:04:43
合計ジャッジ時間 10,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
32,256 KB
testcase_01 AC 69 ms
31,740 KB
testcase_02 AC 76 ms
32,000 KB
testcase_03 AC 68 ms
32,000 KB
testcase_04 AC 67 ms
32,128 KB
testcase_05 AC 70 ms
31,872 KB
testcase_06 AC 68 ms
32,256 KB
testcase_07 AC 69 ms
31,968 KB
testcase_08 AC 68 ms
32,128 KB
testcase_09 AC 67 ms
31,868 KB
testcase_10 AC 69 ms
31,840 KB
testcase_11 AC 70 ms
32,128 KB
testcase_12 AC 69 ms
32,128 KB
testcase_13 AC 71 ms
32,384 KB
testcase_14 AC 74 ms
31,860 KB
testcase_15 AC 70 ms
32,128 KB
testcase_16 AC 69 ms
31,872 KB
testcase_17 AC 70 ms
32,128 KB
testcase_18 AC 68 ms
32,128 KB
testcase_19 AC 68 ms
31,872 KB
testcase_20 AC 67 ms
31,872 KB
testcase_21 AC 68 ms
32,240 KB
testcase_22 AC 69 ms
32,000 KB
testcase_23 AC 71 ms
31,840 KB
testcase_24 AC 69 ms
31,872 KB
testcase_25 AC 69 ms
32,000 KB
testcase_26 AC 72 ms
31,840 KB
testcase_27 AC 68 ms
32,128 KB
testcase_28 AC 69 ms
32,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (312 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 = float <| IN.[0]
    let a = float <| 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