結果

問題 No.975 ミスターマックスバリュ
ユーザー CuriousFairy315CuriousFairy315
提出日時 2020-01-31 21:53:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 47,868 KB
最終ジャッジ日時 2024-09-17 08:00:54
合計ジャッジ時間 4,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,404 KB
testcase_01 AC 141 ms
41,324 KB
testcase_02 AC 142 ms
41,360 KB
testcase_03 AC 142 ms
41,344 KB
testcase_04 AC 149 ms
41,324 KB
testcase_05 AC 193 ms
42,200 KB
testcase_06 AC 192 ms
42,416 KB
testcase_07 AC 211 ms
43,100 KB
testcase_08 AC 519 ms
47,868 KB
testcase_09 AC 135 ms
41,068 KB
testcase_10 AC 132 ms
40,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        new Main();
    }
    
    public Main() {
        try (Scanner sc = new Scanner(System.in)) {
            int X = sc.nextInt(), N = sc.nextInt(), M = sc.nextInt();
            int find = 0;
            for (int i = 0;i < N;++ i) if (X == sc.nextInt()) find |= 1;
            for (int i = 0;i < M;++ i) if (X == sc.nextInt()) find |= 2;
            switch(find) {
                case 0:
                    System.out.println(-1);
                    break;
                case 1:
                    System.out.println("MrMax");
                    break;
                case 2:
                    System.out.println("MaxValu");
                    break;
                case 3:
                    System.out.println("MrMaxValu");
            }
        }
    }
}
0