結果

問題 No.2039 Copy and Avoid
ユーザー 👑 rin204rin204
提出日時 2022-08-15 21:10:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 68,596 KB
最終ジャッジ日時 2024-10-02 09:19:04
合計ジャッジ時間 3,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
66,188 KB
testcase_01 AC 38 ms
53,600 KB
testcase_02 AC 44 ms
60,108 KB
testcase_03 AC 38 ms
53,332 KB
testcase_04 AC 39 ms
53,096 KB
testcase_05 AC 45 ms
62,116 KB
testcase_06 AC 39 ms
52,320 KB
testcase_07 AC 37 ms
52,704 KB
testcase_08 AC 39 ms
53,208 KB
testcase_09 AC 39 ms
52,332 KB
testcase_10 AC 39 ms
52,136 KB
testcase_11 AC 38 ms
52,940 KB
testcase_12 AC 41 ms
58,408 KB
testcase_13 AC 162 ms
66,808 KB
testcase_14 AC 159 ms
67,292 KB
testcase_15 AC 158 ms
67,424 KB
testcase_16 AC 152 ms
68,596 KB
testcase_17 AC 44 ms
61,076 KB
testcase_18 AC 45 ms
61,212 KB
testcase_19 AC 44 ms
62,192 KB
testcase_20 AC 51 ms
62,848 KB
testcase_21 AC 39 ms
53,936 KB
testcase_22 AC 38 ms
53,700 KB
testcase_23 AC 41 ms
53,240 KB
testcase_24 AC 40 ms
52,904 KB
testcase_25 AC 38 ms
53,096 KB
testcase_26 AC 38 ms
52,360 KB
testcase_27 AC 45 ms
60,664 KB
testcase_28 AC 38 ms
52,476 KB
testcase_29 AC 37 ms
52,592 KB
testcase_30 AC 37 ms
52,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, a, b = map(int, input().split())
C = list(map(int, input().split()))
C.sort()

div = []
for i in range(1, int(n ** 0.5 + 1)):
    if n % i == 0:
        div.append(i)
        if i * i != n:
            div.append(n // i)

div.sort()
l = len(div)
inf = 1 << 60
mi = [inf] * l
for i in range(l):
    d = div[i]
    for c in C:
        if c % d == 0:
            mi[i] = c
            break

dp = [inf] * l
dp[0] = -b
for i, d in enumerate(div):
    x = dp[i] + b
    for j in range(i + 1, l):
        if div[j] % d != 0:
            continue
        if div[j] >= mi[i]:
            break
        dp[j] = min(dp[j], x + a * (div[j] // d - 1))
ans = dp[-1]
if ans == inf:
    ans = -1

print(ans)
0