題目連結: https://zerojudge.tw/ShowProblem?problemid=b162

# 解題思路

這題的話,就用 map 紀錄每個數字出現的次數就好啦

# 程式碼

#include <bits/stdc++.h>
using namespace std;
int main(){
    int n;
    while(cin>>n){
        map<int, int> num;
        map<int, int> ::iterator it;
        for(int i=0,m;i<n;i++){
            cin>>m;
            num[m]++;
        }
        for(it = num.begin() ; it!= num.end();it++)
            cout<<it->first<<" "<<it->second<<endl;
    }
}
更新於 閱讀次數

用實際行動犒賞爆肝的我😀

Zrn Ye LinePay

LinePay