結果

問題 No.602 隠されていたゲーム2
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-02 08:40:24
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 18,512 KB
最終ジャッジ日時 2024-05-06 01:38:41
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
11,648 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 9 ms
6,400 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 10 ms
6,400 KB
testcase_05 WA -
testcase_06 AC 10 ms
6,272 KB
testcase_07 AC 9 ms
6,144 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 9 ms
6,400 KB
testcase_16 AC 17 ms
7,296 KB
testcase_17 WA -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
from bisect import bisect_left
def index(arr, x):
    i = bisect_left(arr, x)
    return i if i!=len(arr) and arr[i]==x else -1
exists = lambda arr, x: index(arr, x) >= 0

n = int(raw_input())
d = map(int, raw_input().split())
d.sort()

def f(x, y):
    if (x, y) == (0, 0):
        return 0
    dist = abs(x) + abs(y)
    # 1回でいけるか
    if exists(d, dist):
        return 1
    # 2回でいけるか
    for i in xrange(n):
        left = dist - d[i]
        if left < 0:
            break
        if exists(d[:i], left) or exists(d[i+1:], left):
            return 2
    return -1

x, y = map(int, raw_input().split())
res = f(x, y)
print res
0