結果

問題 No.602 隠されていたゲーム2
ユーザー daku9640daku9640
提出日時 2017-12-03 23:02:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,716 KB
最終ジャッジ日時 2024-05-09 11:36:28
合計ジャッジ時間 2,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 50 ms
12,160 KB
testcase_17 AC 74 ms
14,044 KB
testcase_18 AC 84 ms
19,512 KB
testcase_19 AC 111 ms
21,688 KB
testcase_20 AC 155 ms
20,024 KB
testcase_21 AC 98 ms
20,152 KB
testcase_22 AC 101 ms
21,524 KB
testcase_23 AC 76 ms
21,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
n = int(readline())
pq = [[], []]
d = tuple(map(int, readline().split()))
x, y = map(int, readline().split())
z = abs(x) + abs(y)
def solve():
    if z == 0: return 0
    if z in d: return 1
    for i in d:
        pq[i % 2].append(i)
    pq[0].sort()
    pq[1].sort()
    if z % 2 == 0:
        if pq[0]:
            if pq[0][-1] * 2 >= z:
                return 2
        if pq[1]:
            if pq[1][-1] * 2 >= z:
                return 2
    else:
        while pq[0] and pq[1]:
            t1 = pq[0][-1]
            t2 = pq[1][-1]
            if t1 + t2 >= z and max(t1, t2) - min(t1, t2) <= z:
                return 2
            if t1 > t2:
                pq[0].pop()
            else:
                pq[1].pop()
    return -1
print(solve())
0