結果
| 問題 |
No.602 隠されていたゲーム2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-02 04:45:05 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,223 bytes |
| コンパイル時間 | 2,448 ms |
| コンパイル使用メモリ | 79,324 KB |
| 実行使用メモリ | 59,824 KB |
| 最終ジャッジ日時 | 2024-11-28 02:42:55 |
| 合計ジャッジ時間 | 10,912 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 WA * 4 |
ソースコード
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));
}
}