結果

問題 No.975 ミスターマックスバリュ
ユーザー ks2mks2m
提出日時 2020-01-31 21:28:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 1,746 ms
コンパイル使用メモリ 77,732 KB
実行使用メモリ 56,940 KB
最終ジャッジ日時 2024-09-17 07:12:01
合計ジャッジ時間 2,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,168 KB
testcase_01 AC 50 ms
49,976 KB
testcase_02 AC 50 ms
50,016 KB
testcase_03 AC 50 ms
49,868 KB
testcase_04 AC 50 ms
50,068 KB
testcase_05 AC 51 ms
50,220 KB
testcase_06 AC 50 ms
50,320 KB
testcase_07 AC 53 ms
49,752 KB
testcase_08 AC 131 ms
56,940 KB
testcase_09 AC 47 ms
49,988 KB
testcase_10 AC 46 ms
50,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int x = Integer.parseInt(sa[0]);
		int n = Integer.parseInt(sa[1]);
		int m = Integer.parseInt(sa[2]);

		boolean flg = false;
		sa = br.readLine().split(" ");
		for (int i = 0; i < n; i++) {
			if (x == Integer.parseInt(sa[i])) {
				flg = true;
				break;
			}
		}
		sa = br.readLine().split(" ");
		for (int i = 0; i < m; i++) {
			if (x == Integer.parseInt(sa[i])) {
				if (flg) {
					System.out.println("MrMaxValu");
				} else {
					System.out.println("MaxValu");
				}
				return;
			}
		}
		br.close();

		if (flg) {
			System.out.println("MrMax");
		} else {
			System.out.println("-1");
		}
	}
}
0