結果

問題 No.602 隠されていたゲーム2
ユーザー wajima_wataruwajima_wataru
提出日時 2017-12-03 17:07:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,129 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-28 14:31:12
合計ジャッジ時間 2,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 30 ms
11,008 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 29 ms
11,008 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 50 ms
14,288 KB
testcase_18 AC 86 ms
19,564 KB
testcase_19 AC 96 ms
21,744 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 135 ms
21,744 KB
testcase_23 AC 151 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

n = int(input())
d_arr = list(map(int, input().split()))
d_even = []
d_odd = []
for d in d_arr:
    if d % 2 == 0:
        d_even.append(d)
    else:
        d_odd.append(d)
x, y = map(lambda n: abs(int(n)), input().split())

if x == 0 and y == 0:
    print(0)
    sys.exit()

for d in d_arr:
    if d == x + y:
        print(1)
        sys.exit()

d_even_max = max(d_even) if len(d_even) >= 1 else -1
d_even_min = min(d_even) if len(d_even) >= 1 else -1
d_odd_max = max(d_odd) if len(d_odd) >= 1 else -1
d_odd_min = min(d_odd) if len(d_odd) >= 1 else -1

for d in d_even:
    if (x + y) % 2 == 0:
        if x + y + d >= d_even_min and abs(x + y - d) <= d_even_max:
            print(2)
            sys.exit()
    else:
        if x + y + d >= d_odd_min and abs(x + y - d) <= d_odd_max:
            print(2)
            sys.exit()
for d in d_odd:
    if (x + y) % 2 == 0:
        if x + y + d >= d_odd_min and abs(x + y - d) <= d_odd_max:
            print(2)
            sys.exit()
    else:
        if x + y + d >= d_even_min and abs(x + y - d) <= d_even_max:
            print(2)
            sys.exit()
print(-1)
0