結果

問題 No.975 ミスターマックスバリュ
ユーザー fal_rndfal_rnd
提出日時 2020-02-04 00:18:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 78,588 KB
実行使用メモリ 48,608 KB
最終ジャッジ日時 2024-09-19 12:00:53
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,228 KB
testcase_01 AC 115 ms
40,284 KB
testcase_02 AC 123 ms
41,248 KB
testcase_03 AC 123 ms
41,204 KB
testcase_04 AC 126 ms
41,640 KB
testcase_05 AC 153 ms
42,432 KB
testcase_06 AC 166 ms
42,396 KB
testcase_07 AC 178 ms
42,920 KB
testcase_08 AC 401 ms
48,608 KB
testcase_09 AC 128 ms
41,292 KB
testcase_10 AC 126 ms
41,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	public static void main(String[] $){
		var s=new Scanner(System.in);
		int t=s.nextInt(),n=s.nextInt();
		s.next();

		var a=s.tokens().limit(n).mapToInt(Integer::parseInt).anyMatch(i->i==t)?1:0;
		var b=s.tokens().mapToInt(Integer::parseInt).anyMatch(i->i==t)?2:0;

		String[] q= {"-1","MrMax","MaxValu","MrMaxValu"};
		System.out.println(q[a+b]);
	}
}
0