結果

問題 No.476 正しくない平均
ユーザー Michae'GonMichae'Gon
提出日時 2017-02-21 00:25:52
言語 F#
(F# 4.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 6,208 ms
コンパイル使用メモリ 184,020 KB
実行使用メモリ 29,788 KB
最終ジャッジ日時 2024-06-09 16:57:37
合計ジャッジ時間 8,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
27,648 KB
testcase_01 AC 55 ms
27,264 KB
testcase_02 AC 56 ms
27,520 KB
testcase_03 AC 54 ms
27,264 KB
testcase_04 AC 53 ms
27,520 KB
testcase_05 AC 57 ms
27,264 KB
testcase_06 AC 55 ms
27,520 KB
testcase_07 AC 57 ms
27,608 KB
testcase_08 AC 57 ms
27,776 KB
testcase_09 AC 56 ms
27,648 KB
testcase_10 AC 57 ms
27,904 KB
testcase_11 AC 55 ms
27,648 KB
testcase_12 AC 61 ms
27,768 KB
testcase_13 AC 60 ms
27,776 KB
testcase_14 AC 60 ms
27,608 KB
testcase_15 AC 58 ms
27,776 KB
testcase_16 AC 55 ms
27,648 KB
testcase_17 AC 55 ms
27,648 KB
testcase_18 AC 58 ms
27,392 KB
testcase_19 AC 57 ms
27,648 KB
testcase_20 AC 62 ms
29,788 KB
testcase_21 AC 58 ms
27,392 KB
testcase_22 AC 59 ms
27,648 KB
testcase_23 AC 58 ms
27,648 KB
testcase_24 AC 55 ms
27,520 KB
testcase_25 AC 54 ms
27,648 KB
testcase_26 AC 55 ms
27,520 KB
testcase_27 AC 57 ms
27,608 KB
testcase_28 AC 57 ms
27,392 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (213 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