結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | uafr_cs |
提出日時 | 2017-12-02 00:38:08 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,233 bytes |
コンパイル時間 | 2,210 ms |
コンパイル使用メモリ | 80,652 KB |
実行使用メモリ | 75,792 KB |
最終ジャッジ日時 | 2024-05-06 00:22:29 |
合計ジャッジ時間 | 10,002 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 95 ms
40,260 KB |
testcase_01 | AC | 110 ms
41,172 KB |
testcase_02 | AC | 100 ms
40,148 KB |
testcase_03 | AC | 105 ms
39,996 KB |
testcase_04 | AC | 114 ms
41,020 KB |
testcase_05 | AC | 107 ms
41,280 KB |
testcase_06 | AC | 107 ms
41,264 KB |
testcase_07 | AC | 96 ms
39,980 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 111 ms
41,284 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 112 ms
41,056 KB |
testcase_16 | AC | 319 ms
47,788 KB |
testcase_17 | AC | 441 ms
50,012 KB |
testcase_18 | AC | 771 ms
57,328 KB |
testcase_19 | AC | 738 ms
58,608 KB |
testcase_20 | AC | 746 ms
64,528 KB |
testcase_21 | AC | 644 ms
64,412 KB |
testcase_22 | WA | - |
testcase_23 | AC | 770 ms
64,308 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 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); } }