結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | uafr_cs |
提出日時 | 2017-12-02 00:08:12 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,136 bytes |
コンパイル時間 | 2,036 ms |
コンパイル使用メモリ | 80,628 KB |
実行使用メモリ | 64,120 KB |
最終ジャッジ日時 | 2024-05-05 21:28:55 |
合計ジャッジ時間 | 9,574 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 108 ms
41,136 KB |
testcase_01 | AC | 107 ms
40,824 KB |
testcase_02 | AC | 111 ms
40,992 KB |
testcase_03 | AC | 113 ms
40,940 KB |
testcase_04 | AC | 110 ms
41,200 KB |
testcase_05 | AC | 110 ms
40,224 KB |
testcase_06 | AC | 108 ms
41,224 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 99 ms
39,852 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 110 ms
40,872 KB |
testcase_16 | AC | 316 ms
47,840 KB |
testcase_17 | AC | 430 ms
49,848 KB |
testcase_18 | AC | 687 ms
56,404 KB |
testcase_19 | AC | 720 ms
58,464 KB |
testcase_20 | AC | 656 ms
62,276 KB |
testcase_21 | AC | 648 ms
62,616 KB |
testcase_22 | WA | - |
testcase_23 | AC | 669 ms
64,120 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()); } final long x = sc.nextLong(); final long y = sc.nextLong(); final long d = Math.abs(x) + Math.abs(y); ArrayList<Long> arr = new ArrayList<>(set); 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); if(d > s){ final long rest = d - s; final long pos = Collections.binarySearch(arr, rest); if(pos >= 0){ System.out.println(2); return; } }else{ final long rest = s - d; final long pos = Collections.binarySearch(arr, rest); if(pos >= 0){ System.out.println(2); return; } } } System.out.println(-1); } }