結果

問題 No.1823 Tricolor Dango
ユーザー pluto77pluto77
提出日時 2022-01-31 16:08:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-06-11 08:54:17
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 166 ms
77,056 KB
testcase_02 AC 158 ms
77,184 KB
testcase_03 AC 156 ms
77,312 KB
testcase_04 AC 104 ms
76,288 KB
testcase_05 AC 106 ms
76,160 KB
testcase_06 AC 101 ms
75,904 KB
testcase_07 AC 67 ms
75,392 KB
testcase_08 AC 65 ms
75,136 KB
testcase_09 AC 68 ms
75,136 KB
testcase_10 AC 65 ms
75,008 KB
testcase_11 AC 65 ms
75,008 KB
testcase_12 AC 63 ms
75,008 KB
testcase_13 AC 61 ms
76,160 KB
testcase_14 AC 67 ms
76,160 KB
testcase_15 AC 66 ms
75,776 KB
testcase_16 AC 52 ms
66,432 KB
testcase_17 AC 53 ms
67,328 KB
testcase_18 AC 61 ms
77,440 KB
testcase_19 AC 97 ms
101,888 KB
testcase_20 AC 61 ms
77,440 KB
testcase_21 AC 143 ms
77,312 KB
testcase_22 AC 154 ms
77,184 KB
testcase_23 AC 126 ms
76,800 KB
testcase_24 AC 138 ms
77,056 KB
testcase_25 AC 160 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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