結果

問題 No.467 隠されていたゲーム
コンテスト
ユーザー rpy3cpp
提出日時 2017-03-26 13:26:10
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 477 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 334 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2026-03-27 17:38:07
合計ジャッジ時間 3,841 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 12 WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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