結果
問題 | No.975 ミスターマックスバリュ |
ユーザー | C_nena_E |
提出日時 | 2020-01-31 21:25:16 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 854 bytes |
コンパイル時間 | 1,870 ms |
コンパイル使用メモリ | 76,468 KB |
実行使用メモリ | 54,208 KB |
最終ジャッジ日時 | 2024-09-17 07:05:57 |
合計ジャッジ時間 | 4,112 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
40,928 KB |
testcase_01 | AC | 116 ms
40,952 KB |
testcase_02 | AC | 120 ms
41,216 KB |
testcase_03 | AC | 110 ms
40,312 KB |
testcase_04 | RE | - |
testcase_05 | AC | 151 ms
41,520 KB |
testcase_06 | AC | 162 ms
42,360 KB |
testcase_07 | AC | 166 ms
42,160 KB |
testcase_08 | AC | 305 ms
47,096 KB |
testcase_09 | AC | 121 ms
41,332 KB |
testcase_10 | AC | 122 ms
41,060 KB |
ソースコード
import java.util.*; import java.io.*; import java.math.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int n = sc.nextInt(); int m = sc.nextInt(); String ans = ""; for(int i = 0; i < n; i++){ if(x == sc.nextInt()){ ans += "MrMax"; break; } } for(int i = 0; i < n; i++){ if(x == sc.nextInt()){ if(!ans.isEmpty()){ ans += "Valu"; }else{ ans += "MaxValu"; } break; } } if(!ans.isEmpty()){ System.out.println(ans); }else{ System.out.println(-1); } } }