結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | daku9640 |
提出日時 | 2017-12-03 00:17:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,242 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 21,736 KB |
最終ジャッジ日時 | 2024-05-06 02:02:24 |
合計ジャッジ時間 | 2,529 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 26 ms
10,624 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 25 ms
10,752 KB |
testcase_04 | AC | 25 ms
10,752 KB |
testcase_05 | WA | - |
testcase_06 | AC | 26 ms
10,752 KB |
testcase_07 | AC | 26 ms
10,624 KB |
testcase_08 | AC | 25 ms
10,880 KB |
testcase_09 | WA | - |
testcase_10 | AC | 25 ms
10,880 KB |
testcase_11 | AC | 24 ms
10,880 KB |
testcase_12 | AC | 25 ms
10,880 KB |
testcase_13 | AC | 26 ms
10,752 KB |
testcase_14 | WA | - |
testcase_15 | AC | 29 ms
10,752 KB |
testcase_16 | AC | 63 ms
12,032 KB |
testcase_17 | AC | 52 ms
14,016 KB |
testcase_18 | AC | 77 ms
19,300 KB |
testcase_19 | AC | 97 ms
21,604 KB |
testcase_20 | AC | 335 ms
19,932 KB |
testcase_21 | AC | 412 ms
20,752 KB |
testcase_22 | WA | - |
testcase_23 | AC | 69 ms
21,496 KB |
ソースコード
import sys from itertools import combinations readline = sys.stdin.readline n = int(readline()) d = sorted(map(int, readline().split())) x, y = map(int, readline().split()) l = abs(x) + abs(y) def solve(): if l == 0: return 0 elif l in d: return 1 elif l % 2 == 0: -1 if max(d) * 2 >= l else 2 else: d1 = [x for x in d if x % 2 == 0] d2 = [x for x in d if x % 2 == 1] if d1 != []: for a in d2: low = 0 high = len(d1) - 1 while low < high: mid = (high + low) >> 1 if (a + d1[mid] >= l): high = mid else: low = mid + 1 if (a + d1[low] < l): continue b = low low = 0 high = len(d1) - 1 while low < high: mid = (high + low + 1) >> 1 if (a > d1[mid] or abs(a - d1[mid]) <= l): low = mid else: high = mid - 1 if (abs(a - d1[low]) > l): continue c = low if (b <= c): return 2 return -1 print(solve())