結果

問題 No.1823 Tricolor Dango
ユーザー MasKoaTSMasKoaTS
提出日時 2022-01-28 21:33:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 887 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,168 KB
最終ジャッジ日時 2024-12-30 05:14:55
合計ジャッジ時間 8,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
86,400 KB
testcase_01 AC 324 ms
89,984 KB
testcase_02 AC 328 ms
90,240 KB
testcase_03 AC 319 ms
90,752 KB
testcase_04 AC 262 ms
90,112 KB
testcase_05 AC 257 ms
90,496 KB
testcase_06 AC 268 ms
89,984 KB
testcase_07 AC 236 ms
89,600 KB
testcase_08 AC 232 ms
90,112 KB
testcase_09 AC 242 ms
89,600 KB
testcase_10 AC 237 ms
89,600 KB
testcase_11 AC 234 ms
89,344 KB
testcase_12 AC 235 ms
89,984 KB
testcase_13 AC 230 ms
90,112 KB
testcase_14 AC 240 ms
89,856 KB
testcase_15 AC 228 ms
89,856 KB
testcase_16 AC 197 ms
94,336 KB
testcase_17 AC 205 ms
93,184 KB
testcase_18 AC 236 ms
100,352 KB
testcase_19 AC 333 ms
119,168 KB
testcase_20 AC 231 ms
100,352 KB
testcase_21 AC 307 ms
90,112 KB
testcase_22 AC 325 ms
90,624 KB
testcase_23 AC 268 ms
89,856 KB
testcase_24 AC 285 ms
90,240 KB
testcase_25 AC 311 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from copy import deepcopy as dcopy
import math
import sys
sys.setrecursionlimit(10**6)
def input():
    return sys.stdin.readline().rstrip()
def getN():
	return int(sys.stdin.readline())
def getNs():
	return map(int,sys.stdin.readline().split())
def getList():
	return list(map(int,sys.stdin.readline().split()))
def strinps(n):
	return [sys.stdin.readline().rstrip() for _ in range(n)]
pi = 3.141592653589793
mod = 10**9+7
MOD = 998244353
INF = math.inf
dx = [1,0,-1,0];	dy = [0,1,0,-1]


"""
Main Code
"""

for _ in [0] * getN():
	n = getN()
	a = getList()
	ok = 1
	ng = sum(a)+1
	while(ng - ok > 1):
		k = (ok + ng) // 2
		s = sum(min(i,k) for i in a)
		if(k * 3 <= s):
			ok = k
		else:
			ng = k
	if(ok * 3 == sum(a)):
		print("Yes")
	else:
		print("No")
0