[Codeforces]1003A. Polycarp's Pockets
題目URL: http://codeforces.com/contest/1003/problem/A
水題~記數後挑最大的即可
水題~記數後挑最大的即可
#include<bits/stdc++.h> using namespace std; int str[1005]; main() { int a,num,maxu=0; cin >> num; while(num--) { cin >> a;
str[a]++;
} for(int i=0;i<1005;i++) maxu=max(maxu,str[i]);
cout << maxu << endl; return 0; }
留言
張貼留言