結果

問題 No.602 隠されていたゲーム2
ユーザー uafr_csuafr_cs
提出日時 2017-12-02 02:36:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,188 bytes
コンパイル時間 3,839 ms
コンパイル使用メモリ 77,748 KB
実行使用メモリ 49,708 KB
最終ジャッジ日時 2024-05-06 00:49:36
合計ジャッジ時間 8,440 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,856 KB
testcase_01 WA -
testcase_02 AC 112 ms
41,004 KB
testcase_03 AC 106 ms
40,304 KB
testcase_04 AC 105 ms
40,284 KB
testcase_05 WA -
testcase_06 AC 114 ms
41,000 KB
testcase_07 AC 111 ms
41,196 KB
testcase_08 AC 109 ms
40,728 KB
testcase_09 AC 98 ms
40,352 KB
testcase_10 WA -
testcase_11 AC 112 ms
41,192 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 108 ms
40,912 KB
testcase_15 AC 97 ms
40,000 KB
testcase_16 AC 257 ms
47,540 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 454 ms
48,328 KB
testcase_21 WA -
testcase_22 AC 613 ms
48,600 KB
testcase_23 AC 521 ms
49,708 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];
		
		long odd_max = 0, even_max = 0;
		for(int i = 0; i < n; i++){
			array[i] = sc.nextLong();
			
			if(array[i] % 2 == 0){
				even_max = Math.max(even_max, array[i]);
			}else{
				odd_max = Math.max(odd_max, array[i]);
			}
		}
		
		final long d_odd_max = even_max + odd_max;
		final long d_even_max = Math.max(odd_max * 2, even_max * 2);
		
		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 && d <= even_max){
			System.out.println(1);
			return;
		}
		if(d % 2 != 0 && d <= odd_max){
			System.out.println(-1);
			return;
		}

		if(d % 2 == 0 && d <= d_even_max){
			System.out.println(2);
			return;
		}
		if(d % 2 == 1 && d <= d_odd_max){
			System.out.println(2);
			return;
		}
		
		System.out.println(-1);
	}
}
0