結果
問題 | No.975 ミスターマックスバリュ |
ユーザー |
|
提出日時 | 2020-01-31 22:22:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 16 ms / 2,000 ms |
コード長 | 642 bytes |
コンパイル時間 | 1,384 ms |
コンパイル使用メモリ | 167,616 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-17 08:46:00 |
合計ジャッジ時間 | 1,886 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int x, n, m; cin >> x >> n >> m; bool mr = false; bool max = false; for (int i = 0; i < n; i++) { int ai; cin >> ai; if (ai == x) { mr = true; } } for (int i = 0; i < m; i++) { int bi; cin >> bi; if (bi == x) { max = true; } } if (mr && max) { cout << "MrMaxValu" << endl; } else if (mr && !max) { cout << "MrMax" << endl; } else if (!mr && max) { cout << "MaxValu" << endl; } else { cout << -1 << endl; } }