結果

問題 No.1823 Tricolor Dango
ユーザー dangodango
提出日時 2023-06-24 21:44:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 101,540 KB
最終ジャッジ日時 2024-07-02 00:45:54
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,020 KB
testcase_01 AC 170 ms
77,048 KB
testcase_02 AC 161 ms
77,164 KB
testcase_03 AC 158 ms
77,048 KB
testcase_04 AC 102 ms
75,916 KB
testcase_05 AC 103 ms
75,764 KB
testcase_06 AC 100 ms
76,196 KB
testcase_07 AC 59 ms
75,252 KB
testcase_08 AC 59 ms
74,656 KB
testcase_09 AC 61 ms
75,068 KB
testcase_10 AC 60 ms
75,176 KB
testcase_11 AC 60 ms
74,904 KB
testcase_12 AC 58 ms
74,912 KB
testcase_13 AC 56 ms
76,228 KB
testcase_14 AC 57 ms
75,868 KB
testcase_15 AC 55 ms
75,968 KB
testcase_16 AC 47 ms
66,380 KB
testcase_17 AC 48 ms
67,716 KB
testcase_18 AC 59 ms
77,816 KB
testcase_19 AC 100 ms
101,540 KB
testcase_20 AC 59 ms
78,452 KB
testcase_21 AC 139 ms
77,272 KB
testcase_22 AC 155 ms
76,912 KB
testcase_23 AC 127 ms
77,064 KB
testcase_24 AC 138 ms
77,184 KB
testcase_25 AC 159 ms
77,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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