結果

問題 No.602 隠されていたゲーム2
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-12-02 14:51:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-09-26 17:34:26
合計ジャッジ時間 3,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,424 KB
testcase_01 AC 50 ms
55,040 KB
testcase_02 AC 51 ms
55,296 KB
testcase_03 AC 51 ms
55,040 KB
testcase_04 AC 50 ms
55,680 KB
testcase_05 AC 50 ms
55,040 KB
testcase_06 AC 50 ms
55,552 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 50 ms
55,296 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 51 ms
55,424 KB
testcase_16 AC 62 ms
67,072 KB
testcase_17 AC 73 ms
73,856 KB
testcase_18 AC 101 ms
93,824 KB
testcase_19 AC 113 ms
101,248 KB
testcase_20 AC 92 ms
98,688 KB
testcase_21 AC 91 ms
98,432 KB
testcase_22 WA -
testcase_23 AC 93 ms
100,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
D = list(map(int,input().split()))
x,y = map(int,input().split())
SD = set(D)
if abs(x)+abs(y) in SD:
    print(1)
    exit()

t = abs(x)+abs(y)

D.sort()

for d in D:
    
    diff = abs(d - t)
    if diff in SD:
        print(2)
        exit()
print(-1)
0