結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー goodbatongoodbaton
提出日時 2014-11-27 23:25:42
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 70,760 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-11 04:15:20
合計ジャッジ時間 1,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 3 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 5 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:16:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
main.cpp:21:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |         scanf("%d",&in);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>

using namespace std;

int main(){
    int in,n,nan[7]={0},ans=0,max_n=0;
    scanf("%d",&n);
    
    in/=2;
    
    for(int i=0;i<n;i++){
        scanf("%d",&in);
        nan[in]++;
    }
    
    for(int i=6;i>=1;i--){
        if(max_n<nan[in]){
            max_n=nan[in];
            ans=in;
        }
    }
    
    printf("%d\n",ans);
    
    return 0;
}
0