結果
問題 | No.79 過小評価ダメ・ゼッタイ |
ユーザー |
![]() |
提出日時 | 2019-09-21 13:39:53 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 15 ms / 5,000 ms |
コード長 | 338 bytes |
コンパイル時間 | 1,418 ms |
コンパイル使用メモリ | 159,592 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-18 18:17:08 |
合計ジャッジ時間 | 3,077 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >>n; vector<int>che(6,0); vector<int>a(n); for(int i=0;i<n;i++){ cin >> a.at(i); che.at(a.at(i)-1)++; } int ans =-1; int chea =0; for(int i=0;i<6;i++){ if(ans<=che.at(i)){ ans=max(ans,che.at(i)); chea=i; } } cout << chea+1 <<endl; }