結果

問題 No.602 隠されていたゲーム2
ユーザー 37zigen37zigen
提出日時 2017-12-02 04:45:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,223 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 79,296 KB
実行使用メモリ 60,104 KB
最終ジャッジ日時 2024-05-06 00:55:50
合計ジャッジ時間 9,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,112 KB
testcase_01 AC 116 ms
41,256 KB
testcase_02 AC 105 ms
39,852 KB
testcase_03 AC 109 ms
41,304 KB
testcase_04 AC 116 ms
41,524 KB
testcase_05 AC 113 ms
41,288 KB
testcase_06 AC 102 ms
40,128 KB
testcase_07 AC 119 ms
40,960 KB
testcase_08 WA -
testcase_09 AC 117 ms
41,524 KB
testcase_10 AC 112 ms
41,012 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 114 ms
41,104 KB
testcase_15 AC 123 ms
40,980 KB
testcase_16 AC 293 ms
47,680 KB
testcase_17 AC 434 ms
48,356 KB
testcase_18 AC 590 ms
53,612 KB
testcase_19 AC 617 ms
57,504 KB
testcase_20 AC 529 ms
56,036 KB
testcase_21 AC 515 ms
55,924 KB
testcase_22 AC 665 ms
60,104 KB
testcase_23 AC 599 ms
60,104 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;
		long[] d;
		long x, y;
		n = sc.nextInt();
		d = new long[n];
		for (int i = 0; i < n; ++i)
			d[i] = sc.nextLong();
		x = sc.nextLong();
		y = sc.nextLong();
		System.out.println(solve(n, d, x, y));
	}

	static int solve(int n, long[] d, long x, long y) {
		x = Math.abs(x);
		y = Math.abs(y);
		if (x == 0 && y == 0) {
			return 0;
		}
		for (int i = 0; i < n; ++i) {
			if (d[i] == x + y) {
				return 1;
			}
		}
		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;
			return 2;
		}

		long maxoddD = 0, maxevenD = 0;
		for (int i = 0; i < n; ++i) {
			if (d[i] % 2 == 0)
				maxevenD = Math.max(maxevenD, d[i]);
			else
				maxoddD = Math.max(maxoddD, d[i]);
		}
		if ((x - y) % 2 == 0) {
			if (2 * Math.max(maxevenD, maxoddD) >= x + y) {
				return 2;
			}
		}
		return -1;

	}

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

}
0