結果

問題 No.476 正しくない平均
ユーザー bluemeganebluemegane
提出日時 2018-09-14 20:56:09
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 398 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 111,660 KB
実行使用メモリ 27,012 KB
最終ジャッジ日時 2024-07-06 05:47:50
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,928 KB
testcase_01 AC 21 ms
24,748 KB
testcase_02 RE -
testcase_03 AC 23 ms
24,792 KB
testcase_04 AC 22 ms
22,708 KB
testcase_05 AC 22 ms
26,712 KB
testcase_06 AC 22 ms
26,976 KB
testcase_07 AC 22 ms
27,012 KB
testcase_08 AC 22 ms
24,844 KB
testcase_09 AC 22 ms
24,668 KB
testcase_10 AC 21 ms
26,844 KB
testcase_11 AC 22 ms
24,924 KB
testcase_12 AC 21 ms
24,832 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 21 ms
24,964 KB
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 21 ms
22,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = long.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        Console.WriteLine(n * k == a.Sum() ? "YES" : "NO");
    }
}
0