結果

問題 No.602 隠されていたゲーム2
ユーザー mkawa2mkawa2
提出日時 2021-11-26 15:38:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,329 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,768 KB
最終ジャッジ日時 2024-06-29 12:17:24
合計ジャッジ時間 2,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 44 ms
14,112 KB
testcase_18 AC 67 ms
19,460 KB
testcase_19 AC 76 ms
21,508 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 73 ms
21,768 KB
testcase_23 AC 78 ms
21,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve():
    n = II()
    dd = LI()
    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 = [0], [0]
    for d in dd:
        if d & 1: dd1.append(d)
        else: dd0.append(d)

    mx0 = max(dd0)
    mx1 = max(dd1)

    if x%2 == 0:
        if x <= mx1*2 or x <= mx0*2:
            print(2)
        else:
            print(-1)
        return

    for d in dd0:
        if x-mx1 <= d <= x+mx1:
            print(2)
            return
    for d in dd1:
        if x-mx0 <= d <= x+mx0:
            print(2)
            return

    print(-1)

solve()
0