結果

問題 No.1823 Tricolor Dango
ユーザー ryusukeryusuke
提出日時 2022-01-28 23:23:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-06-09 16:55:02
合計ジャッジ時間 3,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 143 ms
77,184 KB
testcase_02 AC 142 ms
77,140 KB
testcase_03 AC 150 ms
77,272 KB
testcase_04 AC 90 ms
76,328 KB
testcase_05 AC 88 ms
76,504 KB
testcase_06 AC 89 ms
76,032 KB
testcase_07 AC 53 ms
75,188 KB
testcase_08 AC 54 ms
75,136 KB
testcase_09 AC 54 ms
75,364 KB
testcase_10 AC 54 ms
75,008 KB
testcase_11 AC 55 ms
75,244 KB
testcase_12 AC 52 ms
75,520 KB
testcase_13 AC 51 ms
76,288 KB
testcase_14 AC 51 ms
76,288 KB
testcase_15 AC 50 ms
75,820 KB
testcase_16 AC 45 ms
66,816 KB
testcase_17 AC 44 ms
67,584 KB
testcase_18 AC 52 ms
78,080 KB
testcase_19 AC 87 ms
101,888 KB
testcase_20 AC 52 ms
77,952 KB
testcase_21 AC 128 ms
77,112 KB
testcase_22 AC 157 ms
77,312 KB
testcase_23 AC 119 ms
77,232 KB
testcase_24 AC 126 ms
77,184 KB
testcase_25 AC 138 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for i in range(t):
    n = int(input())
    a = list(map(int, input().split()))
    if max(a) <= sum(a) // 3 and sum(a) % 3 == 0:
        print('Yes')
    else:
        print('No')
0