結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー byamibyami
提出日時 2017-11-04 21:44:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 1,598 ms
コンパイル使用メモリ 166,804 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 04:06:49
合計ジャッジ時間 2,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 16 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 17 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 11 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 16 ms
5,376 KB
testcase_24 AC 16 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,n) for (int i = a;i < n;i++)
#define per(i,n,a) for (int i = n-1;i >= a;i--)
using namespace std;

int main() {
    int n; cin >> n;
    vector<int> num(7);
    rep(i,0,n){
        int temp;
        cin >> temp;
        num[temp]++;
    }
    int ans = -1;
    int cnt = -1;
    per(i,7-1,0){
        if(cnt < num[i]){
            cnt = num[i];
            ans = i;
        }
    }
    cout << ans << endl;
}
0