結果

問題 No.1823 Tricolor Dango
ユーザー AsahiAsahi
提出日時 2023-02-05 06:32:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 56,764 KB
最終ジャッジ日時 2024-07-03 23:17:33
合計ジャッジ時間 18,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,480 KB
testcase_01 AC 637 ms
49,248 KB
testcase_02 AC 508 ms
49,368 KB
testcase_03 AC 574 ms
50,544 KB
testcase_04 AC 572 ms
48,592 KB
testcase_05 AC 570 ms
48,788 KB
testcase_06 AC 562 ms
48,896 KB
testcase_07 AC 645 ms
46,756 KB
testcase_08 AC 586 ms
47,944 KB
testcase_09 AC 549 ms
48,396 KB
testcase_10 AC 538 ms
48,072 KB
testcase_11 AC 536 ms
48,432 KB
testcase_12 AC 483 ms
48,156 KB
testcase_13 AC 553 ms
48,448 KB
testcase_14 AC 457 ms
47,000 KB
testcase_15 AC 538 ms
48,680 KB
testcase_16 AC 409 ms
48,216 KB
testcase_17 AC 440 ms
48,528 KB
testcase_18 AC 512 ms
48,720 KB
testcase_19 AC 711 ms
56,764 KB
testcase_20 AC 498 ms
49,144 KB
testcase_21 AC 570 ms
48,664 KB
testcase_22 AC 665 ms
48,604 KB
testcase_23 AC 547 ms
48,468 KB
testcase_24 AC 569 ms
48,180 KB
testcase_25 AC 552 ms
49,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
// import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    
    public static void main(String[] args) throws IOException{
        int T = sc.nextInt();
        while(T-->0) {
            int n = sc.nextInt();
            long [] A = new long[n];
            long sum = 0;
            long max = -1;
            for(int i=0;i<n;i++) {
                A[i] = sc.nextLong();
                sum += A[i];
                max = Math.max(max,A[i]);
            }
            if(sum % 3 == 0 && max <= sum/3) output.println("Yes");
            else output.println("No");
        }
        output.flush();
    }
}
0