結果
問題 | No.602 隠されていたゲーム2 |
ユーザー | mkawa2 |
提出日時 | 2021-11-27 15:05:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 87 ms / 2,000 ms |
コード長 | 1,401 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 81,860 KB |
実行使用メモリ | 93,896 KB |
最終ジャッジ日時 | 2024-06-30 05:39:37 |
合計ジャッジ時間 | 2,480 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
53,132 KB |
testcase_01 | AC | 36 ms
53,440 KB |
testcase_02 | AC | 34 ms
52,208 KB |
testcase_03 | AC | 34 ms
52,496 KB |
testcase_04 | AC | 33 ms
53,936 KB |
testcase_05 | AC | 33 ms
52,728 KB |
testcase_06 | AC | 32 ms
53,120 KB |
testcase_07 | AC | 33 ms
52,688 KB |
testcase_08 | AC | 36 ms
52,360 KB |
testcase_09 | AC | 35 ms
52,828 KB |
testcase_10 | AC | 37 ms
52,464 KB |
testcase_11 | AC | 36 ms
52,608 KB |
testcase_12 | AC | 37 ms
53,420 KB |
testcase_13 | AC | 35 ms
53,996 KB |
testcase_14 | AC | 34 ms
52,744 KB |
testcase_15 | AC | 33 ms
52,264 KB |
testcase_16 | AC | 58 ms
75,852 KB |
testcase_17 | AC | 57 ms
75,436 KB |
testcase_18 | AC | 70 ms
85,856 KB |
testcase_19 | AC | 80 ms
92,336 KB |
testcase_20 | AC | 87 ms
93,896 KB |
testcase_21 | AC | 74 ms
93,724 KB |
testcase_22 | AC | 79 ms
91,172 KB |
testcase_23 | AC | 61 ms
89,472 KB |
ソースコード
import sys sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = 18446744073709551615 inf = 4294967295 md = 10**9+7 # md = 998244353 from bisect import * def solve(): n = II() dd = LI() dd.sort() x, y = LI() x, y = abs(x+y), abs(x-y) if x < y: x, y = y, x if x == 0: print(0) return if x in dd: print(1) return dd0, dd1 = [], [] for d in dd: if d & 1: dd1.append(d) else: dd0.append(d) mx0 = mx1 = -1 if dd0: mx0 = max(dd0) if dd1: mx1 = max(dd1) if x%2 == 0: if x <= mx1*2 or x <= mx0*2: print(2) else: print(-1) return if dd0 and dd1: for d0 in dd0: i = bisect_left(dd1, abs(x-d0)) if i < len(dd1) and dd1[i] <= x+d0: print(2) return print(-1) solve()