結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー aaaaaaiu
提出日時 2019-07-26 15:22:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 191,916 KB
最終ジャッジ日時 2025-01-07 07:34:49
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n; cin >> n;
    int cnt[7] {};
    for (int i = 0; i < n; i++) {
        int x; cin >> x;
        cnt[x]++;
    }
    int mx = 0;
    int ans = 0;
    for (int i = 1; i <= 6; i++)
        if (cnt[i] >= mx) {
            mx = cnt[i];
            ans = i;
        }
    cout << ans << endl;
    return 0;
}
0