結果

問題 No.1823 Tricolor Dango
ユーザー H20H20
提出日時 2022-01-28 21:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 102,084 KB
最終ジャッジ日時 2024-06-09 14:20:26
合計ジャッジ時間 3,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,888 KB
testcase_01 AC 147 ms
77,244 KB
testcase_02 AC 146 ms
76,968 KB
testcase_03 AC 148 ms
77,220 KB
testcase_04 AC 91 ms
76,192 KB
testcase_05 AC 90 ms
76,288 KB
testcase_06 AC 90 ms
76,224 KB
testcase_07 AC 54 ms
75,140 KB
testcase_08 AC 53 ms
74,912 KB
testcase_09 AC 55 ms
75,588 KB
testcase_10 AC 54 ms
75,152 KB
testcase_11 AC 52 ms
75,308 KB
testcase_12 AC 57 ms
75,312 KB
testcase_13 AC 56 ms
76,284 KB
testcase_14 AC 54 ms
76,128 KB
testcase_15 AC 56 ms
75,828 KB
testcase_16 AC 45 ms
67,136 KB
testcase_17 AC 45 ms
69,220 KB
testcase_18 AC 53 ms
78,388 KB
testcase_19 AC 88 ms
102,084 KB
testcase_20 AC 51 ms
78,776 KB
testcase_21 AC 130 ms
77,428 KB
testcase_22 AC 137 ms
77,112 KB
testcase_23 AC 113 ms
77,400 KB
testcase_24 AC 137 ms
77,420 KB
testcase_25 AC 158 ms
77,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split())) 
    if sum(A)%3==0 and max(A)*3<=sum(A):
        print('Yes')
    else:
        print('No')
0