結果

問題 No.602 隠されていたゲーム2
ユーザー GrayCoderGrayCoder
提出日時 2017-12-02 01:49:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,944 KB
最終ジャッジ日時 2024-05-06 00:37:12
合計ジャッジ時間 3,027 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from bisect import bisect

def main():
    N = int(input())
    D = tuple(map(int, input().split()))
    X, Y = map(int, input().split())

    p = abs(X) + abs(Y)
    if N == 1:
        if p % D[0]:
            print(-1)
        else:
            print(p // D[0])
        return

    n = 1
    while 1:
        if p in D:
            print(n)
            break
        prev = p
        i = bisect(D, p)
        p = min(abs(p - D[i-1]), abs(p - D[i]))
        if p >= prev:
            print(-1)
            break
        prev = p
        n += 1

main()
0