結果
問題 |
No.1823 Tricolor Dango
|
ユーザー |
![]() |
提出日時 | 2022-01-29 07:22:52 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 112 ms / 2,000 ms |
コード長 | 605 bytes |
コンパイル時間 | 1,988 ms |
コンパイル使用メモリ | 110,520 KB |
実行使用メモリ | 47,948 KB |
最終ジャッジ日時 | 2024-12-31 11:30:48 |
合計ジャッジ時間 | 3,886 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Linq; using System; public class Hello { static void Main() { var t = int.Parse(Console.ReadLine().Trim()); while (t-->0) { var n = int.Parse(Console.ReadLine().Trim()); string[] line = Console.ReadLine().Trim().Split(' '); var a = Array.ConvertAll(line, long.Parse); getAns(n,a); } } static void getAns (int n, long[] a) { var sum = a.Sum(); if (sum % 3 != 0) { Console.WriteLine("No"); return; } var max = a.Max(); Console.WriteLine(max <= sum/3L? "Yes":"No"); } }