map直接秒
2024-08-05 21:36:54
发布于:云南
8阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
map<long long,int> mp;
int n; cin >> n;
for(int i = 1;i <= n;i++){
int t; cin >> t;
mp[t]++;
}
for(auto i : mp) cout << i.first << " " << i.second << endl;
return 0;
}
这里空空如也
有帮助,赞一个