結果

問題 No.602 隠されていたゲーム2
ユーザー uafr_csuafr_cs
提出日時 2017-12-02 00:14:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,196 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 81,092 KB
実行使用メモリ 64,144 KB
最終ジャッジ日時 2024-05-05 22:40:55
合計ジャッジ時間 10,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,008 KB
testcase_01 AC 109 ms
41,040 KB
testcase_02 AC 113 ms
41,132 KB
testcase_03 AC 117 ms
40,940 KB
testcase_04 AC 113 ms
41,268 KB
testcase_05 AC 112 ms
41,356 KB
testcase_06 AC 103 ms
40,292 KB
testcase_07 AC 118 ms
41,368 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 116 ms
40,848 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 103 ms
39,948 KB
testcase_16 AC 334 ms
48,196 KB
testcase_17 AC 458 ms
49,684 KB
testcase_18 AC 721 ms
56,748 KB
testcase_19 AC 754 ms
58,316 KB
testcase_20 AC 697 ms
59,396 KB
testcase_21 AC 628 ms
58,304 KB
testcase_22 WA -
testcase_23 AC 674 ms
62,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int n = sc.nextInt();
		TreeSet<Long> set = new TreeSet<Long>();
		for(int i = 0; i < n; i++){ set.add(sc.nextLong()); }
		
		final long x = sc.nextLong();
		final long y = sc.nextLong();
		final long d = Math.abs(x) + Math.abs(y);
		
		
		ArrayList<Long> arr = new ArrayList<>(set);
		
		if(d == 0){
			System.out.println(0);
			return;
		}
		
		for(final long s : arr){
			if(d == s){
				System.out.println(1);
				return;
			}
		}
		
		for(int i = 0; i < arr.size(); i++){
			final long s = arr.get(i);
			if(d > s){
				final long rest = d - s;
				final long pos = Collections.binarySearch(arr, rest);
				if(pos >= 0){
					System.out.println(2);
					return;
				}
			}else{
				final long rest = s - d;
				final long pos = Collections.binarySearch(arr, rest);
				if(pos >= 0){
					System.out.println(2);
					return;
				}
			}
		}
		
		System.out.println(-1);
	}
}
0