結果

問題 No.1823 Tricolor Dango
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-28 21:39:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 101,900 KB
最終ジャッジ日時 2024-06-09 14:33:42
合計ジャッジ時間 3,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 146 ms
77,580 KB
testcase_02 AC 135 ms
77,360 KB
testcase_03 AC 140 ms
77,108 KB
testcase_04 AC 86 ms
76,152 KB
testcase_05 AC 91 ms
76,300 KB
testcase_06 AC 89 ms
76,512 KB
testcase_07 AC 52 ms
75,376 KB
testcase_08 AC 51 ms
75,388 KB
testcase_09 AC 52 ms
75,440 KB
testcase_10 AC 51 ms
75,380 KB
testcase_11 AC 52 ms
75,136 KB
testcase_12 AC 51 ms
75,316 KB
testcase_13 AC 53 ms
76,604 KB
testcase_14 AC 50 ms
76,076 KB
testcase_15 AC 49 ms
76,068 KB
testcase_16 AC 45 ms
67,556 KB
testcase_17 AC 42 ms
67,604 KB
testcase_18 AC 50 ms
78,680 KB
testcase_19 AC 87 ms
101,900 KB
testcase_20 AC 51 ms
77,832 KB
testcase_21 AC 125 ms
77,368 KB
testcase_22 AC 154 ms
77,068 KB
testcase_23 AC 113 ms
77,308 KB
testcase_24 AC 123 ms
77,460 KB
testcase_25 AC 138 ms
77,772 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