結果

問題 No.476 正しくない平均
ユーザー LeonardoneLeonardone
提出日時 2017-02-08 04:50:07
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 113 bytes
コンパイル時間 2,805 ms
コンパイル使用メモリ 154,632 KB
実行使用メモリ 25,312 KB
最終ジャッジ日時 2023-08-26 16:41:00
合計ジャッジ時間 6,631 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
23,140 KB
testcase_01 AC 76 ms
25,312 KB
testcase_02 RE -
testcase_03 AC 74 ms
23,144 KB
testcase_04 AC 73 ms
23,172 KB
testcase_05 AC 74 ms
23,236 KB
testcase_06 AC 76 ms
25,188 KB
testcase_07 AC 77 ms
23,164 KB
testcase_08 AC 74 ms
25,292 KB
testcase_09 AC 75 ms
21,116 KB
testcase_10 AC 76 ms
23,132 KB
testcase_11 AC 75 ms
23,212 KB
testcase_12 AC 74 ms
25,204 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 81 ms
23,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

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