#include using namespace std; string canConstruct(vector a, int t) { long s=0; for(int a_i = 0; a_i < t; a_i++){ long temp=a[a_i]; while(temp!=0){ s=s+temp%10; temp=temp/10; } } if(s%3==0) return "Yes"; else return "No"; } int main() { int t; cin >> t; for(int a0 = 0; a0 < t; a0++){ int n; cin >> n; vector a(n); for(int a_i = 0; a_i < n; a_i++){ cin >> a[a_i]; } string result = canConstruct(a,t); cout << result << endl; } return 0; }