結果

問題 No.1823 Tricolor Dango
ユーザー Ain48803949Ain48803949
提出日時 2022-01-28 21:58:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 1,057 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,108 KB
最終ジャッジ日時 2024-06-09 15:01:56
合計ジャッジ時間 2,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
11,520 KB
testcase_01 AC 93 ms
11,648 KB
testcase_02 AC 91 ms
11,520 KB
testcase_03 AC 94 ms
11,648 KB
testcase_04 AC 66 ms
11,776 KB
testcase_05 AC 62 ms
11,904 KB
testcase_06 AC 63 ms
11,520 KB
testcase_07 AC 57 ms
12,288 KB
testcase_08 AC 55 ms
12,160 KB
testcase_09 AC 59 ms
11,904 KB
testcase_10 AC 59 ms
12,032 KB
testcase_11 AC 58 ms
12,160 KB
testcase_12 AC 53 ms
12,032 KB
testcase_13 AC 60 ms
14,052 KB
testcase_14 AC 58 ms
14,336 KB
testcase_15 AC 55 ms
14,124 KB
testcase_16 AC 45 ms
15,468 KB
testcase_17 AC 45 ms
15,528 KB
testcase_18 AC 64 ms
20,776 KB
testcase_19 AC 105 ms
34,108 KB
testcase_20 AC 63 ms
20,472 KB
testcase_21 AC 74 ms
11,648 KB
testcase_22 AC 84 ms
11,648 KB
testcase_23 AC 66 ms
11,776 KB
testcase_24 AC 73 ms
11,648 KB
testcase_25 AC 88 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect,collections,copy,heapq,itertools,math,string,sys,queue,time,random
input = lambda: sys.stdin.readline().rstrip()
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return list(map(int,input().split()))
def LIIS(): return list(map(int,input().split()))
def comb(n, r):return math.factorial(n) // (math.factorial(n - r) * math.factorial(r))
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
ragen=range
INF=10**18
MOD=998244353
#sys.setrecursionlimit(10**7)
alpha="abcdefghijklmnopqrstuvwxyz"
def bit(x):
    return bin(x).count("1")
##############################################################################
t=II()
for i in range(t):
    n=II()
    A=LIIS()
    if sum(A)%3==0 and max(A)<=sum(A)//3:
        print("Yes")
    else:
        print("No")
0