赞
踩
#include<bits/stdc++.h> using namespace std; const int N=110; int main(){ int T; cin>>T; while(T--){ int n,arr[N]={},mx=0; cin>>n; for(int i=1;i<=n;i++){ int x; cin>>x; arr[x]++; mx=max(mx,arr[x]); } cout<<mx<<endl; } return 0; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。