結果

問題 No.602 隠されていたゲーム2
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-13 17:25:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,636 KB
最終ジャッジ日時 2024-07-21 16:48:02
合計ジャッジ時間 2,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 WA -
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 32 ms
10,624 KB
testcase_12 AC 33 ms
10,624 KB
testcase_13 AC 32 ms
10,624 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 44 ms
13,924 KB
testcase_18 AC 63 ms
19,328 KB
testcase_19 AC 75 ms
21,504 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 70 ms
21,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    D = list(map(int, input().split()))
    x, y = map(int, input().split())
    if (x, y) == (0, 0):
        return 0

    P = abs(x + y)
    Q = abs(x - y)
    if P > Q:
        P, Q = Q, P

    if Q in D:
        return 1

    dmax = max(D)
    if Q <= dmax:
        return 2

    return -1


print(main())
0