結果

問題 No.476 正しくない平均
ユーザー LeonardoneLeonardone
提出日時 2017-02-08 04:50:07
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 113 bytes
コンパイル時間 13,011 ms
コンパイル使用メモリ 189,888 KB
実行使用メモリ 37,376 KB
最終ジャッジ日時 2024-06-07 12:17:17
合計ジャッジ時間 17,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

let x()=Seq.map int<|stdin.ReadLine().Split(' ')
printfn"%s"<|if Seq.reduce(*)(x())=Seq.sum(x())then"YES"else"NO"
0