結果
| 問題 | No.476 正しくない平均 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-01 13:38:06 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 27 ms / 2,000 ms |
| コード長 | 767 bytes |
| コンパイル時間 | 964 ms |
| コンパイル使用メモリ | 110,440 KB |
| 実行使用メモリ | 26,776 KB |
| 最終ジャッジ日時 | 2025-12-01 13:38:10 |
| 合計ジャッジ時間 | 3,223 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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]));
double ans = count / double.Parse(str[0]);
if(ans == int.Parse(str[1]))
{
Console.WriteLine("YES");
}
else
{
Console.WriteLine("NO");
}
}
}