#!/bin/python3 import sys def canConstruct(a): # Return "Yes" or "No" denoting whether you can construct the required number. s = 0 for v in a: while v > 0: s += (v % 10) v //= 10 return "Yes" if s % 3 == 0 else "No" if __name__ == "__main__": t = int(input().strip()) for a0 in range(t): n = int(input().strip()) a = list(map(int, input().strip().split(' '))) result = canConstruct(a) print(result)