結果
問題 | No.975 ミスターマックスバリュ |
ユーザー | mattyan0502 |
提出日時 | 2020-02-03 17:15:53 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 515 ms / 2,000 ms |
コード長 | 1,134 bytes |
コンパイル時間 | 2,054 ms |
コンパイル使用メモリ | 77,200 KB |
実行使用メモリ | 48,224 KB |
最終ジャッジ日時 | 2024-09-19 02:01:46 |
合計ジャッジ時間 | 4,773 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,272 KB |
testcase_01 | AC | 137 ms
41,376 KB |
testcase_02 | AC | 146 ms
41,412 KB |
testcase_03 | AC | 141 ms
41,344 KB |
testcase_04 | AC | 144 ms
41,364 KB |
testcase_05 | AC | 190 ms
42,508 KB |
testcase_06 | AC | 188 ms
42,400 KB |
testcase_07 | AC | 194 ms
43,264 KB |
testcase_08 | AC | 515 ms
48,224 KB |
testcase_09 | AC | 117 ms
40,236 KB |
testcase_10 | AC | 129 ms
41,296 KB |
ソースコード
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("MrMaxValu"); } } }