제출 #475370

#제출 시각아이디문제언어결과실행 시간메모리
475370HossamHero7Izbori (COCI17_izbori)C++14
44 / 80
1 ms332 KiB
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
#define endl '\n'
void solve(){
    int n,m,k;
    cin>>n>>m>>k;
    vector <vector<int>> v(n,vector<int>(m));
    for(int i=0;i<n;i++){
        for(int j=0;j<m;j++) cin>>v[i][j];
    }
    for(int i=0;i<m;i++){
        map <int,int> mp;
        for(int j=0;j<n;j++){
            int x = v[j][i];
            mp[x] ++;
        }
        if(i == 0){
        ll ans = 0;
        int mx = 0;
        for(auto j : mp){
            mx = max(mx,j.second);
        }
        for(auto j:mp){
            if(j.second == mx){
                ans = j.first;
                break;
            }
        }
        cout<<ans<<endl;
        }
    }
    cout<<1<<endl;
}
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);      cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--){
        solve();
    }
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...