結果

問題 No.1823 Tricolor Dango
ユーザー titan23titan23
提出日時 2022-06-29 02:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 102,012 KB
最終ジャッジ日時 2024-11-21 21:50:43
合計ジャッジ時間 4,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 103 ms
76,780 KB
testcase_02 AC 103 ms
76,416 KB
testcase_03 AC 106 ms
76,492 KB
testcase_04 AC 81 ms
75,776 KB
testcase_05 AC 82 ms
75,520 KB
testcase_06 AC 82 ms
75,392 KB
testcase_07 AC 71 ms
75,648 KB
testcase_08 AC 70 ms
75,136 KB
testcase_09 AC 72 ms
75,776 KB
testcase_10 AC 72 ms
75,244 KB
testcase_11 AC 72 ms
75,320 KB
testcase_12 AC 70 ms
74,880 KB
testcase_13 AC 72 ms
76,160 KB
testcase_14 AC 72 ms
76,288 KB
testcase_15 AC 69 ms
75,392 KB
testcase_16 AC 57 ms
66,688 KB
testcase_17 AC 58 ms
67,840 KB
testcase_18 AC 69 ms
77,696 KB
testcase_19 AC 112 ms
102,012 KB
testcase_20 AC 69 ms
78,080 KB
testcase_21 AC 95 ms
76,800 KB
testcase_22 AC 103 ms
76,800 KB
testcase_23 AC 91 ms
76,544 KB
testcase_24 AC 96 ms
76,160 KB
testcase_25 AC 104 ms
76,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

def main():
  n = int(input())
  A = list(map(int, input().split()))
  sm = sum(A)
  if sm % 3:
    return 'No'
  k = sm // 3
  for a in A:
    if a > k:
      return 'No'
  return 'Yes'


print('\n'.join(str(main()) for _ in range(int(input()))))
0