結果

問題 No.476 正しくない平均
コンテスト
ユーザー aaa aa
提出日時 2025-12-01 13:33:41
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 765 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 112,464 KB
実行使用メモリ 26,776 KB
最終ジャッジ日時 2025-12-01 13:33:46
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 20 WA * 6
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #
raw source code

using System;
public class Program
{
    public static void Main()
    {
        //int num = int.Parse(Console.ReadLine() ?? string.Empty);
        string[] str = (Console.ReadLine() ?? string.Empty).Trim().Split(' ');
        string[] str2 = (Console.ReadLine() ?? string.Empty).Trim().Split(' ');
        //string str = Console.ReadLine() ?? string.Empty;

        long count = 0;
        for(int i = 0; i < str2.Length; i++)
        {
            count += int.Parse(str2[i]);
        }
        int ans = (int)(count / int.Parse(str[0]));
        //float ans = count / float.Parse(str[0]);
        if(ans == int.Parse(str[1]))
        {
            Console.WriteLine("YES");
        }
        else
        {
            Console.WriteLine("NO");
        }
    }
}
0