結果

問題 No.1823 Tricolor Dango
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-28 21:39:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-12-30 05:33:29
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 200 ms
77,312 KB
testcase_02 AC 191 ms
77,568 KB
testcase_03 AC 196 ms
77,056 KB
testcase_04 AC 129 ms
75,904 KB
testcase_05 AC 130 ms
75,904 KB
testcase_06 AC 135 ms
76,032 KB
testcase_07 AC 84 ms
75,008 KB
testcase_08 AC 82 ms
75,136 KB
testcase_09 AC 81 ms
75,264 KB
testcase_10 AC 84 ms
75,136 KB
testcase_11 AC 82 ms
74,880 KB
testcase_12 AC 79 ms
74,752 KB
testcase_13 AC 77 ms
75,904 KB
testcase_14 AC 75 ms
76,032 KB
testcase_15 AC 76 ms
75,648 KB
testcase_16 AC 62 ms
66,304 KB
testcase_17 AC 61 ms
67,072 KB
testcase_18 AC 71 ms
77,440 KB
testcase_19 AC 116 ms
102,016 KB
testcase_20 AC 76 ms
77,184 KB
testcase_21 AC 191 ms
77,184 KB
testcase_22 AC 205 ms
76,928 KB
testcase_23 AC 167 ms
77,056 KB
testcase_24 AC 177 ms
77,440 KB
testcase_25 AC 200 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    A = list(map(int,input().split()))
    if sum(A)%3:
        print("No")
        continue
    if max(A) > sum(A)//3:
        print("No")
    else:
        print("Yes")
0