結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | uafr_cs |
提出日時 | 2017-12-03 16:22:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,291 bytes |
コンパイル時間 | 2,379 ms |
コンパイル使用メモリ | 78,604 KB |
実行使用メモリ | 60,024 KB |
最終ジャッジ日時 | 2024-05-06 08:48:07 |
合計ジャッジ時間 | 9,507 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
54,092 KB |
testcase_01 | AC | 133 ms
54,300 KB |
testcase_02 | AC | 127 ms
54,084 KB |
testcase_03 | AC | 130 ms
53,872 KB |
testcase_04 | AC | 125 ms
54,144 KB |
testcase_05 | AC | 125 ms
53,916 KB |
testcase_06 | AC | 124 ms
53,828 KB |
testcase_07 | AC | 124 ms
54,000 KB |
testcase_08 | AC | 127 ms
53,768 KB |
testcase_09 | AC | 126 ms
54,056 KB |
testcase_10 | AC | 132 ms
54,128 KB |
testcase_11 | AC | 127 ms
53,932 KB |
testcase_12 | AC | 127 ms
53,924 KB |
testcase_13 | AC | 116 ms
52,760 KB |
testcase_14 | AC | 128 ms
53,884 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 435 ms
59,208 KB |
testcase_18 | AC | 587 ms
59,340 KB |
testcase_19 | AC | 634 ms
59,488 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 621 ms
59,256 KB |
testcase_23 | AC | 583 ms
60,024 KB |
ソースコード
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; } for(final long s : array){ if(s == d){ System.out.println(1); return; } } /* if(d % 2 == 0 && d <= even_max){ System.out.println(1); return; } if(d % 2 == 1 && 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); } }