#!/bin/python import sys import itertools def canConstruct(a): # Return "Yes" or "No" denoting whether you can construct the required number. acc = '' for i in a: acc = acc + str(i) for i in itertools.permutations(acc, len(acc)): tstr = ''.join(list(i)) tint = int(tstr) if tint % 3 == 0: return "Yes" return "No" if __name__ == "__main__": t = int(raw_input().strip()) for a0 in xrange(t): n = int(raw_input().strip()) a = map(int, raw_input().strip().split(' ')) result = canConstruct(a) print result