結果

問題 No.975 ミスターマックスバリュ
ユーザー hogepagefoobarhogepagefoobar
提出日時 2020-02-02 13:16:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 767 bytes
コンパイル時間 1,588 ms
コンパイル使用メモリ 169,952 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 00:41:40
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 RE -
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 3 ms
4,348 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://arc073.contest.atcoder.jp/tasks/arc073_b
#include <bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; }
ll lcm(ll a, ll b) { return a / gcd(a, b) * b; }

int main(int argc, char** argv) {
    int x, n, m;
    cin >> x >> n >> m;
    vector<int> a(n), b(n);

    rep(i, n) { cin >> a[i]; }
    rep(i, m) { cin >> b[i]; }

    bool ina = find(a.begin(), a.end(), x) != a.end();
    bool inb = find(b.begin(), b.end(), x) != b.end();

    if (ina && inb)
        cout << "MrMaxValu" << endl;
    else if (ina)
        cout << "MrMax" << endl;
    else if (inb)
        cout << "MaxValu" << endl;
    else
        cout << -1 << endl;

    return 0;
};
0