1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include<iostream>
#include<map>
using namespace std;
typedef long long ll;
map<int,ll>m;
map<int,ll>::iterator it;
int wyn[300010];
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
	int n,v1;
	cin>>n;
	for(int i=0;i<n;i++){
		cin>>v1;
		m[v1]++;
	}
	for(it=m.begin();it!=m.end();it++){
		for(ll i=1;i<=it->second;i++){
			wyn[i]+=it->second-it->second%i;
		}
	}
	for(int i=1;i<=n;i++)cout<<wyn[i]<<' ';
	return 0;
}