結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2017-12-02 00:12:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,321 bytes |
コンパイル時間 | 3,521 ms |
コンパイル使用メモリ | 78,524 KB |
実行使用メモリ | 53,004 KB |
最終ジャッジ日時 | 2024-05-05 22:12:53 |
合計ジャッジ時間 | 5,630 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
36,924 KB |
testcase_01 | AC | 44 ms
37,164 KB |
testcase_02 | AC | 43 ms
37,088 KB |
testcase_03 | AC | 43 ms
36,676 KB |
testcase_04 | AC | 43 ms
37,136 KB |
testcase_05 | AC | 46 ms
36,676 KB |
testcase_06 | AC | 43 ms
37,132 KB |
testcase_07 | AC | 43 ms
37,028 KB |
testcase_08 | AC | 42 ms
36,840 KB |
testcase_09 | AC | 44 ms
37,240 KB |
testcase_10 | AC | 45 ms
37,176 KB |
testcase_11 | AC | 44 ms
37,152 KB |
testcase_12 | AC | 43 ms
37,104 KB |
testcase_13 | AC | 45 ms
37,080 KB |
testcase_14 | AC | 45 ms
36,908 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 156 ms
45,072 KB |
testcase_18 | AC | 232 ms
49,984 KB |
testcase_19 | AC | 271 ms
53,004 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 253 ms
52,796 KB |
testcase_23 | AC | 253 ms
52,740 KB |
ソースコード
import java.io.*; import java.util.*; class Main { public static void main(String[] args) { MyScanner sc = new MyScanner(); out = new PrintWriter(new BufferedOutputStream(System.out)); int n=sc.nextInt(); long[]d=new long[n]; Set<Long>hs=new HashSet<Long>(); long e=-1,o=-1; for(int i=0;i<n;++i){ d[i]=sc.nextLong();hs.add(d[i]); if(d[i]%2==1)o=Math.max(o,d[i]);else e=Math.max(e,d[i]); } long x=sc.nextLong(),y=sc.nextLong(); long dd=Math.abs(x)+Math.abs(y); if(dd==0){ out.println(0); out.close(); return; } if(hs.contains(dd)){ out.println(1); out.close(); return; } if(dd%2==0){ if(dd<=2*e||dd<=2*o) out.println(2); else out.println(-1); }else{ if(e>0&&o>0&&dd<=e+o) out.println(2); else out.println(-1); } out.close(); } // http://codeforces.com/blog/entry/7018 //-----------PrintWriter for faster output--------------------------------- public static PrintWriter out; //-----------MyScanner class for faster input---------- public static class MyScanner { BufferedReader br; StringTokenizer st; public MyScanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine(){ String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } }