結果

問題 No.602 隠されていたゲーム2
ユーザー daku9640daku9640
提出日時 2017-12-03 01:08:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 783 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,696 KB
最終ジャッジ日時 2024-05-06 02:03:08
合計ジャッジ時間 1,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 RE -
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 RE -
testcase_09 AC 25 ms
10,496 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 24 ms
10,496 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 89 ms
21,560 KB
testcase_23 AC 67 ms
21,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
n = int(readline())
pq = [[], []]
d = sorted(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)
    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 len(pq[0]) > 0 and len(pq[1]) > 0:
            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