4 条题解
-
1
#include <bits/stdc++.h> using namespace std; map<int,int> mp; int main(int argc, char** argv) { ios::sync_with_stdio(false); int n,x,maxn=-1; cin>>n; for(int i=1;i<=n;i++) { cin>>x; mp[x]++; } map<int,int>::iterator it; for(it=mp.begin();it!=mp.end();it++) cout<<it->first<<" "<<it->second<<endl; return 0; }
- 1
信息
- ID
- 1612
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 6
- 标签
- 递交数
- 173
- 已通过
- 55
- 上传者