結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,120 KB
testcase_01 AC 102 ms
40,140 KB
testcase_02 AC 96 ms
39,996 KB
testcase_03 AC 104 ms
40,640 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 111 ms
41,320 KB
testcase_07 AC 109 ms
41,048 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 104 ms
39,972 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 609 ms
59,088 KB
testcase_22 AC 700 ms
59,508 KB
testcase_23 AC 610 ms
57,472 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 void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int n = sc.nextInt();
		long[] array = new long[n];
		
		for(int i = 0; i < n; i++){
			array[i] = sc.nextLong();
		}
		
		TreeSet<Long> odds = new TreeSet<Long>();
		TreeSet<Long> evens = new TreeSet<Long>();
		for(int i = 0; i < n; i++){
			if(array[i] % 2 == 0){
				evens.add(array[i]);
			}else{
				odds.add(array[i]);
			}
		}
		
		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;
		}
		
		if(d % 2 == 0){
			if(evens.ceiling(d) != null){
				System.out.println(1);
				return;
			}
			
			for(final long s : evens){
				final long diff = Math.abs(d - s);
				
				if(evens.ceiling(diff) != null){
					System.out.println(2);
					return;
				}
			}
		}else{
			if(odds.ceiling(d) != null){
				System.out.println(1);
				return;
			}
			
			for(final long s : odds){
				final long diff = Math.abs(d - s);
				
				if(odds.ceiling(diff) != null){
					System.out.println(2);
					return;
				}
			}
		}
		
		System.out.println(-1);
	}
}
0