結果

問題 No.476 正しくない平均
ユーザー fujitafujita
提出日時 2023-05-10 09:14:30
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 18,001 ms
コンパイル使用メモリ 167,920 KB
実行使用メモリ 183,920 KB
最終ジャッジ日時 2024-05-04 23:11:31
合計ジャッジ時間 19,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
28,544 KB
testcase_01 AC 41 ms
29,056 KB
testcase_02 AC 43 ms
28,660 KB
testcase_03 AC 42 ms
28,660 KB
testcase_04 AC 44 ms
28,672 KB
testcase_05 AC 43 ms
28,544 KB
testcase_06 AC 42 ms
29,056 KB
testcase_07 AC 42 ms
28,800 KB
testcase_08 AC 41 ms
29,056 KB
testcase_09 AC 42 ms
28,660 KB
testcase_10 AC 41 ms
28,544 KB
testcase_11 AC 41 ms
28,672 KB
testcase_12 AC 41 ms
29,056 KB
testcase_13 AC 41 ms
29,056 KB
testcase_14 AC 41 ms
29,040 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 44 ms
28,660 KB
testcase_19 AC 43 ms
28,544 KB
testcase_20 AC 41 ms
28,544 KB
testcase_21 WA -
testcase_22 AC 41 ms
29,056 KB
testcase_23 AC 44 ms
28,392 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 42 ms
28,672 KB
testcase_27 WA -
testcase_28 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (124 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 #

using System;

namespace yukicoder
{
    class Program
    {

        static void Main(string[] args)
        {
            
            var str = Console.ReadLine().Split(" ");
            var n = int.Parse(str[0]);
            var a = int.Parse(str[1]);

            var str2 = Console.ReadLine().Split(" ");
            int x = 0 , sum = 0;

            for(int i = 0; i < str2.Length; i++)
            {
                x = int.Parse(str2[i]);
                sum += x;
            }
            if(sum / n == a && sum % n == 0)
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }
    }
}
0