結果

問題 No.2039 Copy and Avoid
ユーザー hir355hir355
提出日時 2022-08-12 22:42:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 830 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 68,312 KB
最終ジャッジ日時 2024-09-23 03:21:04
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
66,952 KB
testcase_01 AC 37 ms
53,172 KB
testcase_02 AC 45 ms
61,044 KB
testcase_03 AC 38 ms
52,956 KB
testcase_04 AC 38 ms
52,092 KB
testcase_05 AC 46 ms
60,316 KB
testcase_06 AC 38 ms
53,584 KB
testcase_07 AC 37 ms
52,312 KB
testcase_08 AC 38 ms
52,376 KB
testcase_09 AC 38 ms
52,580 KB
testcase_10 AC 38 ms
52,792 KB
testcase_11 AC 38 ms
53,040 KB
testcase_12 AC 40 ms
57,128 KB
testcase_13 AC 168 ms
67,048 KB
testcase_14 AC 165 ms
68,176 KB
testcase_15 AC 162 ms
68,312 KB
testcase_16 AC 157 ms
66,928 KB
testcase_17 WA -
testcase_18 AC 45 ms
61,764 KB
testcase_19 AC 45 ms
61,188 KB
testcase_20 WA -
testcase_21 AC 38 ms
52,292 KB
testcase_22 AC 38 ms
53,112 KB
testcase_23 AC 38 ms
53,292 KB
testcase_24 AC 38 ms
52,228 KB
testcase_25 AC 37 ms
52,692 KB
testcase_26 AC 38 ms
52,160 KB
testcase_27 AC 46 ms
60,124 KB
testcase_28 AC 37 ms
52,564 KB
testcase_29 AC 37 ms
53,144 KB
testcase_30 AC 37 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def devisors(n):
    d = []
    a = 1
    while a * a < n:
        if n % a == 0:
            d.append(a)
            d.append(n // a)
        a += 1
    if a * a == n:
        d.append(a)
    return d

INF = 10 ** 18
n, m, a, b = map(int, input().split())
c = list(map(int, input().split()))
c.sort()
dv = devisors(n)
dv.sort()
k = len(dv)
dp = [INF] * k
dp[0] = 0
prv = [-1] * k
for i in range(k):
    x = INF
    for j in range(m):
        if c[j] % dv[i] == 0:
            x = c[j]
            break
    for j in range(i + 1, k):
        if dv[j] % dv[i] > 0:
            continue
        if dv[j] >= x:
            break
        if dp[j] > dp[i] + a * (dv[j] // dv[i] - 1) + b:
            dp[j] = dp[i] + a * (dv[j] // dv[i] - 1) + b
            prv[j] = dv[i]
if dp[-1] > 10 ** 10:
    print(-1)
else:
    print(dp[-1] - b)
0