#12702: AC code


bert30702 (bert30702)

學校 : 臺北市立成功高級中學
編號 : 62008
來源 : [223.136.190.31]
最後登入時間 :
2019-11-16 18:56:07
d885. NOIP2007 1.統計數字 番外篇 | From: [203.64.138.91] | 發表日期 : 2017-09-14 16:49

#include <bits/stdc++.h>
using namespace std;

int main(){
    int n;
    while(cin >> n){ 
        map<int, int> mp;
        while(n--){
            int in; cin >> in;
            mp[in]++;
        }
        for(auto it: mp)
            cout << it.first << ' ' << it.second << endl;
    }
}

 
ZeroJudge Forum