結果

問題 No.1823 Tricolor Dango
ユーザー ShirotsumeShirotsume
提出日時 2021-11-19 23:03:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-06-25 10:41:29
合計ジャッジ時間 5,132 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 178 ms
77,184 KB
testcase_02 AC 171 ms
77,312 KB
testcase_03 AC 171 ms
77,184 KB
testcase_04 AC 113 ms
76,032 KB
testcase_05 AC 112 ms
76,544 KB
testcase_06 AC 111 ms
76,416 KB
testcase_07 AC 74 ms
75,136 KB
testcase_08 AC 71 ms
75,136 KB
testcase_09 AC 73 ms
75,520 KB
testcase_10 AC 71 ms
75,264 KB
testcase_11 AC 71 ms
75,136 KB
testcase_12 AC 70 ms
75,264 KB
testcase_13 AC 67 ms
76,160 KB
testcase_14 AC 68 ms
75,776 KB
testcase_15 AC 66 ms
75,904 KB
testcase_16 AC 53 ms
66,944 KB
testcase_17 AC 54 ms
67,200 KB
testcase_18 AC 64 ms
78,080 KB
testcase_19 AC 106 ms
102,272 KB
testcase_20 AC 64 ms
77,696 KB
testcase_21 AC 154 ms
77,312 KB
testcase_22 AC 169 ms
77,312 KB
testcase_23 AC 139 ms
76,928 KB
testcase_24 AC 155 ms
77,184 KB
testcase_25 AC 174 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    a = list(map(int,input().split()))
    if sum(a) % 3 == 0 and max(a) <= sum(a) // 3:
        return 'Yes'
    else:
        return 'No'

for _ in range(int(input())):
    print(solve())
0