結果
問題 | No.975 ミスターマックスバリュ |
ユーザー | mattyan0502 |
提出日時 | 2020-02-03 17:14:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,135 bytes |
コンパイル時間 | 2,047 ms |
コンパイル使用メモリ | 77,324 KB |
実行使用メモリ | 48,352 KB |
最終ジャッジ日時 | 2024-09-19 01:59:08 |
合計ジャッジ時間 | 4,967 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
40,360 KB |
testcase_01 | AC | 138 ms
41,300 KB |
testcase_02 | AC | 139 ms
41,320 KB |
testcase_03 | WA | - |
testcase_04 | AC | 146 ms
41,372 KB |
testcase_05 | AC | 187 ms
41,980 KB |
testcase_06 | AC | 187 ms
42,192 KB |
testcase_07 | AC | 201 ms
43,376 KB |
testcase_08 | AC | 516 ms
48,352 KB |
testcase_09 | AC | 132 ms
40,936 KB |
testcase_10 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { // Your code here! Scanner sc = new Scanner(System.in); int X = sc.nextInt(); int N = sc.nextInt(); int M = sc.nextInt(); int A[] = new int[N]; int B[] = new int[M]; int mrflag = 0; int maflag = 0; for(int i=0;i<N;i++) { A[i] = sc.nextInt(); if(A[i] == X) { mrflag = 1; } } for(int j=0;j<M;j++) { B[j] = sc.nextInt(); if(B[j] == X) { maflag = 1; } } if(mrflag == 0 && maflag == 0) { System.out.println(-1); } else if(mrflag == 0 && maflag == 1) { System.out.println("MaxValu"); } else if(mrflag == 1 && maflag == 0) { System.out.println("MrMax"); } else if(mrflag == 1 && maflag == 1) { System.out.println("MrMaxValue"); } } }