結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー evawenis
提出日時 2020-07-05 01:00:28
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 3,109 ms
コンパイル使用メモリ 193,412 KB
最終ジャッジ日時 2025-01-11 15:48:39
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	cin.tie(0),ios::sync_with_stdio(false);
	int n; cin>>n;
	vector<int>l(7);
	for(int i=0;i<n;++i){
		int L; cin>>L;
		++l.at(L);
	}
	int ans=1;
	for(int i=2,mx=l.front();i<=6;++i){
		if(l.at(i)>=mx)mx=l.at(i),ans=i;
	}
	cout<<ans<<"\n"s;
}
0