結果
問題 | No.1586 Equal Array |
ユーザー |
![]() |
提出日時 | 2025-02-20 21:30:01 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 74 ms / 1,000 ms |
コード長 | 1,167 bytes |
コンパイル時間 | 3,697 ms |
コンパイル使用メモリ | 115,432 KB |
実行使用メモリ | 41,140 KB |
最終ジャッジ日時 | 2025-02-20 21:30:07 |
合計ジャッジ時間 | 5,591 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; // https://yukicoder.me/problems/no/1586 class Program { static string InputPattern = "InputX"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("3"); WillReturn.Add("48 51 51"); } else if (InputPattern == "Input2") { WillReturn.Add("7"); WillReturn.Add("80 90 65 65 80 50 65"); } else if (InputPattern == "Input3") { WillReturn.Add("3"); WillReturn.Add("219 219 219"); } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List<string> InputList = GetInputList(); long[] AArr = InputList[1].Split(' ').Select(pX => long.Parse(pX)).ToArray(); long SumVal = AArr.Sum(); if (SumVal % AArr.Length > 0) { Console.WriteLine("No"); return; } Console.WriteLine("Yes"); } }