結果

問題 No.467 隠されていたゲーム
ユーザー rpy3cpp
提出日時 2017-03-26 13:26:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-06 06:26:13
合計ジャッジ時間 1,873 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 12 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    n = int(input())
    ds = list(map(int, input().split()))
    x, y = map(int, input().split())
    return n, ds, x, y

def solve(n, ds, x, y):
    max_d = max(ds)
    z = max(abs(x), abs(y))
    if z == 0:
        return 0
    if z in ds:
        return 1
    if z <= 2 * max_d:
        return 2
    s, r = divmod(z - 2 * max_d, max_d)
    if r in ds:
        return s + 1
    else:
        return s + 2

n, ds, x, y = read_data()
print(solve(n, ds, x, y))
0