gets.to_i.times{ n=gets.to_i x=gets.split.map{|e| e.to_i}.sort hs=Hash.new(0) while x.size>0 hs[x[0]]+=1 x.shift end y=hs.values.sort ans=0 while y.size>2 y[y.size-1]-=1 y[y.size-2]-=1 y[y.size-3]-=1 y=y.sort.select{|e4| e4>0 } ans+=1 end puts ans }