結果

問題 No.1823 Tricolor Dango
ユーザー kakel-sankakel-san
提出日時 2023-12-17 20:14:15
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 7,130 ms
コンパイル使用メモリ 168,152 KB
実行使用メモリ 195,672 KB
最終ジャッジ日時 2024-09-27 08:04:52
合計ジャッジ時間 11,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,976 KB
testcase_01 AC 104 ms
41,088 KB
testcase_02 AC 103 ms
41,344 KB
testcase_03 AC 113 ms
40,960 KB
testcase_04 AC 80 ms
37,376 KB
testcase_05 AC 81 ms
37,756 KB
testcase_06 AC 81 ms
37,868 KB
testcase_07 AC 79 ms
37,376 KB
testcase_08 AC 80 ms
36,736 KB
testcase_09 AC 79 ms
37,632 KB
testcase_10 AC 80 ms
37,632 KB
testcase_11 AC 78 ms
38,272 KB
testcase_12 AC 76 ms
36,864 KB
testcase_13 AC 76 ms
38,400 KB
testcase_14 AC 80 ms
38,396 KB
testcase_15 AC 74 ms
37,248 KB
testcase_16 AC 66 ms
34,560 KB
testcase_17 AC 74 ms
36,608 KB
testcase_18 AC 80 ms
42,496 KB
testcase_19 AC 102 ms
56,516 KB
testcase_20 AC 80 ms
42,112 KB
testcase_21 AC 85 ms
38,528 KB
testcase_22 AC 91 ms
39,552 KB
testcase_23 AC 82 ms
37,736 KB
testcase_24 AC 83 ms
38,528 KB
testcase_25 AC 89 ms
195,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (88 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new bool[t];
        for (var u = 0; u < t; ++u)
        {
            var n = NN;
            var a = NList;
            var sum = a.Sum();
            ans[u] = sum % 3 == 0 && a.Max() <= sum / 3;
        }
        WriteLine(string.Join("\n", ans.Select(f => f ? "Yes" : "No")));
    }
}
0