結果

問題 No.476 正しくない平均
ユーザー LeonardoneLeonardone
提出日時 2017-02-08 04:51:27
言語 F#
(F# 4.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 3,332 ms
コンパイル使用メモリ 154,216 KB
実行使用メモリ 25,196 KB
最終ジャッジ日時 2023-08-26 16:41:09
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
25,196 KB
testcase_01 AC 74 ms
25,096 KB
testcase_02 AC 74 ms
23,132 KB
testcase_03 AC 76 ms
23,228 KB
testcase_04 AC 74 ms
25,140 KB
testcase_05 AC 76 ms
23,096 KB
testcase_06 AC 73 ms
25,188 KB
testcase_07 AC 72 ms
23,156 KB
testcase_08 AC 75 ms
25,188 KB
testcase_09 AC 74 ms
25,132 KB
testcase_10 AC 72 ms
23,084 KB
testcase_11 AC 74 ms
23,228 KB
testcase_12 AC 77 ms
23,216 KB
testcase_13 AC 73 ms
23,144 KB
testcase_14 AC 75 ms
23,152 KB
testcase_15 AC 77 ms
23,084 KB
testcase_16 AC 73 ms
23,080 KB
testcase_17 AC 73 ms
21,172 KB
testcase_18 AC 73 ms
23,136 KB
testcase_19 AC 73 ms
25,180 KB
testcase_20 AC 76 ms
25,196 KB
testcase_21 AC 75 ms
23,212 KB
testcase_22 AC 74 ms
23,124 KB
testcase_23 AC 75 ms
23,152 KB
testcase_24 AC 77 ms
25,156 KB
testcase_25 AC 76 ms
23,088 KB
testcase_26 AC 74 ms
23,084 KB
testcase_27 AC 74 ms
25,160 KB
testcase_28 AC 73 ms
23,300 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 int64<|stdin.ReadLine().Split(' ')
printfn"%s"<|if Seq.reduce(*)(x())=Seq.sum(x())then"YES"else"NO"
0