結果

問題 No.2039 Copy and Avoid
ユーザー rlangevinrlangevin
提出日時 2023-11-10 12:43:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-09-26 00:46:38
合計ジャッジ時間 3,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
77,056 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 66 ms
65,664 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 64 ms
66,176 KB
testcase_06 AC 41 ms
53,632 KB
testcase_07 AC 41 ms
53,504 KB
testcase_08 AC 42 ms
54,016 KB
testcase_09 AC 44 ms
53,504 KB
testcase_10 AC 43 ms
54,016 KB
testcase_11 AC 44 ms
54,016 KB
testcase_12 AC 46 ms
59,392 KB
testcase_13 AC 235 ms
77,184 KB
testcase_14 AC 286 ms
76,928 KB
testcase_15 AC 246 ms
77,184 KB
testcase_16 AC 275 ms
76,928 KB
testcase_17 AC 57 ms
64,128 KB
testcase_18 AC 64 ms
66,816 KB
testcase_19 AC 55 ms
64,640 KB
testcase_20 AC 78 ms
69,632 KB
testcase_21 AC 46 ms
59,520 KB
testcase_22 AC 40 ms
54,016 KB
testcase_23 AC 41 ms
53,632 KB
testcase_24 AC 40 ms
53,888 KB
testcase_25 AC 40 ms
53,376 KB
testcase_26 AC 41 ms
53,632 KB
testcase_27 AC 53 ms
62,976 KB
testcase_28 AC 40 ms
54,144 KB
testcase_29 AC 42 ms
53,760 KB
testcase_30 AC 40 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
N,M,A,B=map(int,input().split())
C=sorted(list(map(int,input().split())))
inf=10**18
d=defaultdict(lambda:inf)
z=defaultdict(lambda:inf)
d[1]=0
D=set()
for i in range(1,int(N**0.5)+1):
 if N%i==0:D.add(i);D.add(N//i)
D=sorted(list(D))
K=len(D)
for i in range(K):
 v=D[i]
 for j in range(M):
  if C[j]%v==0:z[v]=min(z[v],C[j])
 y=inf
 for j in range(i):
  x=D[j]
  if v%x==0 and z[x]>v:
   y=min(y,d[x]+B*(i<K-1)+(v//x-1)*A)
  d[v]=y*(i!=0)
print(d[N] if d[N]!=inf else -1)
0