結果

問題 No.1823 Tricolor Dango
ユーザー bluemeganebluemegane
提出日時 2022-01-29 07:22:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 980 ms
コンパイル使用メモリ 112,980 KB
実行使用メモリ 47,820 KB
最終ジャッジ日時 2024-06-10 03:12:13
合計ジャッジ時間 3,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
26,748 KB
testcase_01 AC 83 ms
31,244 KB
testcase_02 AC 85 ms
30,996 KB
testcase_03 AC 84 ms
29,204 KB
testcase_04 AC 56 ms
31,968 KB
testcase_05 AC 56 ms
29,764 KB
testcase_06 AC 56 ms
29,404 KB
testcase_07 AC 56 ms
36,580 KB
testcase_08 AC 54 ms
35,944 KB
testcase_09 AC 58 ms
34,788 KB
testcase_10 AC 61 ms
36,536 KB
testcase_11 AC 58 ms
36,712 KB
testcase_12 AC 54 ms
33,892 KB
testcase_13 AC 54 ms
30,984 KB
testcase_14 AC 53 ms
31,052 KB
testcase_15 AC 48 ms
30,424 KB
testcase_16 AC 37 ms
29,076 KB
testcase_17 AC 42 ms
27,644 KB
testcase_18 AC 56 ms
31,260 KB
testcase_19 AC 97 ms
47,820 KB
testcase_20 AC 56 ms
31,412 KB
testcase_21 AC 66 ms
31,120 KB
testcase_22 AC 79 ms
29,212 KB
testcase_23 AC 57 ms
27,588 KB
testcase_24 AC 65 ms
29,196 KB
testcase_25 AC 83 ms
31,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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");
    }
}
0