結果

問題 No.2039 Copy and Avoid
ユーザー rlangevinrlangevin
提出日時 2023-11-10 12:19:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 74,112 KB
最終ジャッジ日時 2024-09-26 00:46:33
合計ジャッジ時間 4,340 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
73,216 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 59 ms
64,640 KB
testcase_03 AC 72 ms
53,504 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 65 ms
64,768 KB
testcase_06 AC 43 ms
53,376 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 41 ms
53,888 KB
testcase_10 AC 44 ms
53,376 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 48 ms
58,752 KB
testcase_13 AC 269 ms
73,344 KB
testcase_14 AC 274 ms
73,856 KB
testcase_15 AC 264 ms
74,112 KB
testcase_16 AC 260 ms
73,728 KB
testcase_17 AC 56 ms
62,976 KB
testcase_18 AC 63 ms
64,640 KB
testcase_19 AC 56 ms
63,872 KB
testcase_20 AC 80 ms
67,072 KB
testcase_21 AC 50 ms
59,776 KB
testcase_22 AC 43 ms
53,632 KB
testcase_23 AC 43 ms
53,760 KB
testcase_24 AC 43 ms
53,888 KB
testcase_25 AC 43 ms
53,888 KB
testcase_26 AC 44 ms
54,144 KB
testcase_27 AC 56 ms
62,336 KB
testcase_28 AC 44 ms
53,632 KB
testcase_29 AC 43 ms
53,504 KB
testcase_30 AC 44 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def div(n):
    i = 1
    SS = set()
    while i * i <= n:
        if n % i == 0:
            SS.add(i)
            SS.add(n//i)
        i += 1
    return sorted(list(SS))    

N, M, A, B = map(int, input().split())
C = sorted(list(map(int, input().split())))
inf = 10 ** 18
dic = defaultdict(lambda : inf)
minv = defaultdict(lambda : inf)
dic[1] = 0
D = div(N)
K = len(D)
for i in range(K):
    for j in range(M):
        if C[j] % D[i] == 0:
            minv[D[i]] = min(minv[D[i]], C[j])

for i in range(1, K):
    val = inf
    for j in range(i):
        if D[i] % D[j] == 0 and minv[D[j]] > D[i]:
            val = min(val, dic[D[j]] + B * int(i<K-1) + (D[i]//D[j] - 1) * A)
    dic[D[i]] = val

print(dic[N]) if dic[N] != inf else print(-1)
0