結果
問題 | No.975 ミスターマックスバリュ |
ユーザー | Shun Takase |
提出日時 | 2020-01-31 21:23:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,680 bytes |
コンパイル時間 | 2,019 ms |
コンパイル使用メモリ | 170,376 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-17 07:02:59 |
合計ジャッジ時間 | 2,180 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 19 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,948 KB |
ソースコード
#include <bits/stdc++.h> #define PI 3.14159265358979323846 #define MAXINF (1e18L) #define INF (1e9L) #define EPS (1e-9) #define MOD ((ll)(1e9+7)) #define REP(i, n) for(int i=0;i<int(n);++i) #define Rep(i,sta,n) for(int i=sta;i<n;i++) #define RREP(i, n) for(int i=int(n)-1;i>=0;--i) #define ALL(v) v.begin(),v.end() #define FIND(v,x) (binary_search(ALL(v),(x))) #define SORT(v) sort(ALL(v)) #define RSORT(v) sort(ALL(v));reverse(ALL(v)) #define DEBUG(x) cerr<<#x<<": "<<x<<endl; #define DEBUG_VEC(v) cerr<<#v<<":";for(int i=0;i<v.size();i++) cerr<<" "<<v[i]; cerr<<endl #define Yes(n) cout<<((n)?"Yes":"No")<<endl #define YES(n) cout<<((n)?"YES":"NO")<<endl #define pb push_back #define fi first #define se second using namespace std; template<class A>void pr(A a){cout << (a) << endl;} template<class A,class B>void pr(A a,B b){cout << a << " " ;pr(b);} template<class A,class B,class C>void pr(A a,B b,C c){cout << a << " " ;pr(b,c);} template<class A,class B,class C,class D>void pr(A a,B b,C c,D d){cout << a << " " ;pr(b,c,d);} template<class T> inline bool chmin(T& a, T b){return a>b ? a=b, true : false;} template<class T> inline bool chmax(T& a, T b){return a<b ? a=b, true : false;} typedef long long ll; typedef pair<int, int> pii; typedef pair<ll,ll> pll; int main(void) { int X,N,M; cin >> X >> N >> M; vector<int> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } vector<int> B(M); for (int i = 0; i < M; i++) { cin >> B[i]; } if(FIND(A, X) && FIND(B, X)){ pr("MrMaxValu"); }else if(FIND(A, X)){ pr("MrMax"); }else if(FIND(B, X)){ pr("MaxValu"); }else{ pr(-1); } }