結果

問題 No.602 隠されていたゲーム2
ユーザー 37zigen37zigen
提出日時 2017-12-02 02:58:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 79,344 KB
実行使用メモリ 59,696 KB
最終ジャッジ日時 2024-05-06 00:51:27
合計ジャッジ時間 9,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,048 KB
testcase_01 AC 118 ms
40,868 KB
testcase_02 AC 113 ms
41,016 KB
testcase_03 AC 100 ms
39,972 KB
testcase_04 AC 114 ms
41,140 KB
testcase_05 AC 100 ms
40,032 KB
testcase_06 AC 113 ms
41,288 KB
testcase_07 AC 110 ms
40,868 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 103 ms
39,708 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 107 ms
41,232 KB
testcase_16 AC 285 ms
46,648 KB
testcase_17 AC 428 ms
48,084 KB
testcase_18 AC 628 ms
53,848 KB
testcase_19 AC 611 ms
55,800 KB
testcase_20 AC 517 ms
55,840 KB
testcase_21 AC 510 ms
55,736 KB
testcase_22 WA -
testcase_23 AC 581 ms
59,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] d = new long[n];
		for (int i = 0; i < n; ++i) {
			d[i] = sc.nextLong();
		}
		int x = sc.nextInt();
		int y = sc.nextInt();
		x = Math.abs(x);
		y = Math.abs(y);
		if (x == 0 && y == 0) {
			System.out.println(0);
			return;
		}
		for (int i = 0; i < n; ++i) {
			if (d[i] == x + y) {
				System.out.println(1);
				return;
			}
		}
		HashSet<Long> set = new HashSet();
		for (int i = 0; i < n; ++i) {
			set.add(d[i]);
		}

		for (int i = 0; i < n; ++i) {
			if (!set.contains(x + y - d[i]) && !set.contains(x + y + d[i]))
				continue;
			System.out.println(2);
			return;
		}
		System.out.println(-1);

	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0