結果

問題 No.1823 Tricolor Dango
ユーザー chineristACchineristAC
提出日時 2022-01-28 23:17:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,686 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,188 KB
最終ジャッジ日時 2024-06-09 16:48:58
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
67,200 KB
testcase_01 AC 122 ms
79,164 KB
testcase_02 AC 129 ms
79,656 KB
testcase_03 AC 127 ms
79,120 KB
testcase_04 AC 101 ms
78,720 KB
testcase_05 AC 98 ms
78,672 KB
testcase_06 AC 101 ms
78,768 KB
testcase_07 AC 95 ms
77,928 KB
testcase_08 AC 91 ms
77,924 KB
testcase_09 AC 91 ms
77,952 KB
testcase_10 AC 92 ms
77,748 KB
testcase_11 AC 93 ms
78,032 KB
testcase_12 AC 85 ms
78,060 KB
testcase_13 AC 89 ms
80,016 KB
testcase_14 AC 88 ms
79,104 KB
testcase_15 AC 90 ms
78,540 KB
testcase_16 AC 72 ms
77,568 KB
testcase_17 AC 74 ms
77,824 KB
testcase_18 AC 101 ms
90,700 KB
testcase_19 AC 138 ms
109,188 KB
testcase_20 AC 90 ms
88,532 KB
testcase_21 AC 122 ms
79,552 KB
testcase_22 AC 127 ms
79,488 KB
testcase_23 AC 115 ms
79,232 KB
testcase_24 AC 117 ms
79,216 KB
testcase_25 AC 128 ms
79,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree:
    def __init__(self, init_val, segfunc, ide_ele):
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        self.size = n
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        k += self.num
        self.tree[k] = self.segfunc(self.tree[k],x)
        while k > 1:
            k >>= 1
            self.tree[k] = self.segfunc(self.tree[2*k], self.tree[2*k+1])

    def query(self, l, r):
        if r==self.size:
            r = self.num

        res = self.ide_ele

        l += self.num
        r += self.num
        right = []
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                right.append(self.tree[r-1])
            l >>= 1
            r >>= 1

        for e in right[::-1]:
            res = self.segfunc(res,e)
        return res

from audioop import reverse
import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

for _ in range(int(input())):
    N = int(input())
    A = li()
    A.sort(reverse=True)
    
    if sum(A)%3:
        print("No")
        continue
    
    print("Yes" if A[0] <= sum(A)//3 else "No")
0