結果

問題 No.602 隠されていたゲーム2
ユーザー uafr_csuafr_cs
提出日時 2017-12-02 00:47:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,243 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 78,872 KB
実行使用メモリ 59,356 KB
最終ジャッジ日時 2024-05-06 00:26:55
合計ジャッジ時間 9,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 103 ms
40,804 KB
testcase_02 AC 98 ms
39,872 KB
testcase_03 AC 106 ms
41,108 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 99 ms
39,928 KB
testcase_07 AC 106 ms
41,088 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 106 ms
40,612 KB
testcase_16 AC 304 ms
47,968 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 541 ms
55,984 KB
testcase_21 AC 552 ms
53,784 KB
testcase_22 WA -
testcase_23 AC 545 ms
59,356 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()); }
		ArrayList<Long> arr = new ArrayList<>(set);
		
		final long x = sc.nextLong();
		final long y = sc.nextLong();
		final long d = Math.abs(x) + Math.abs(y);
		
		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);
			
			{ // d = s1 + s2
				final long rest = Math.abs(d - s);
				final int pos = Collections.binarySearch(arr, rest);
				if(pos >= 0){
					System.out.println(2);
					return;
				}
			}
			{ // d = s1 - s2
				final long rest = Math.abs(s - d);
				final int pos = Collections.binarySearch(arr, rest);
				if(pos >= 0){
					System.out.println(2);
					return;
				}
			}
		}
		*/
		
		System.out.println(-1);
	}
}
0