結果

問題 No.476 正しくない平均
ユーザー Michae'GonMichae'Gon
提出日時 2017-02-21 00:25:52
言語 F#
(F# 4.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 20,037 ms
コンパイル使用メモリ 183,780 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-12-30 11:46:57
合計ジャッジ時間 11,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
27,392 KB
testcase_01 AC 66 ms
27,392 KB
testcase_02 AC 76 ms
27,520 KB
testcase_03 AC 70 ms
27,648 KB
testcase_04 AC 69 ms
27,776 KB
testcase_05 AC 65 ms
27,648 KB
testcase_06 AC 66 ms
27,520 KB
testcase_07 AC 69 ms
27,776 KB
testcase_08 AC 70 ms
27,648 KB
testcase_09 AC 68 ms
27,380 KB
testcase_10 AC 67 ms
27,648 KB
testcase_11 AC 72 ms
27,648 KB
testcase_12 AC 75 ms
27,648 KB
testcase_13 AC 72 ms
27,372 KB
testcase_14 AC 71 ms
27,776 KB
testcase_15 AC 67 ms
27,772 KB
testcase_16 AC 67 ms
27,520 KB
testcase_17 AC 66 ms
27,648 KB
testcase_18 AC 67 ms
27,520 KB
testcase_19 AC 66 ms
27,380 KB
testcase_20 AC 68 ms
27,776 KB
testcase_21 AC 68 ms
27,520 KB
testcase_22 AC 71 ms
27,508 KB
testcase_23 AC 67 ms
27,520 KB
testcase_24 AC 64 ms
27,776 KB
testcase_25 AC 64 ms
27,776 KB
testcase_26 AC 67 ms
27,748 KB
testcase_27 AC 68 ms
27,648 KB
testcase_28 AC 67 ms
27,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (445 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 #

module Main
open System

let na = Console.ReadLine().Split(' ')
        |> Array.map float

let xs = Console.ReadLine().Split(' ')
        |> Array.map float

Console.WriteLine(
    if Array.sum xs / na.[0] = na.[1] then
        "YES"
    else
        "NO"
)
0