結果
問題 | No.79 過小評価ダメ・ゼッタイ |
ユーザー | sorag |
提出日時 | 2022-08-17 20:01:17 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 765 bytes |
コンパイル時間 | 976 ms |
コンパイル使用メモリ | 101,564 KB |
最終ジャッジ日時 | 2024-11-15 02:29:56 |
合計ジャッジ時間 | 1,702 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:23:5: error: 'sort' was not declared in this scope; did you mean 'sqrt'? 23 | sort(all(b)); | ^~~~ | sqrt
ソースコード
#include <iostream> #include<utility> #include <vector> #include <map> #include<string> #include<queue> #include<math.h> #define pb push_back #define all(x) begin(x),end(x) #define ll long long #define P pair<int,int> #define lP pait<ll,ll> using namespace std; int main() { int a,ma=0,ans=0; cin>>a; vector<int> b(a); vector<P> c(6); for(int i=0;i<a;i++){ cin>>b[i]; } sort(all(b)); for(int j=1;j<=6;j++){ for(int i=0;i<a;i++){ if(b[i]==j){ c[j].first++; c[j].second=b[i]; } } ma=max(ma,c[j].first); } for(int j=1;j<=6;j++){ if(c[j].first==ma) { ans=c[j].second; } } cout<<ans<<endl; return 0; }