結果

問題 No.1330 Multiply or Divide
ユーザー 👑 KazunKazun
提出日時 2021-01-08 23:58:46
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 701 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 157,236 KB
最終ジャッジ日時 2024-11-16 19:30:04
合計ジャッジ時間 5,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,300 KB
testcase_01 AC 190 ms
157,236 KB
testcase_02 RE -
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 61 ms
80,632 KB
testcase_07 AC 68 ms
86,016 KB
testcase_08 AC 184 ms
151,152 KB
testcase_09 AC 192 ms
150,712 KB
testcase_10 AC 184 ms
150,948 KB
testcase_11 AC 184 ms
150,708 KB
testcase_12 AC 188 ms
151,076 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 35 ms
51,740 KB
testcase_18 AC 161 ms
150,692 KB
testcase_19 AC 175 ms
150,944 KB
testcase_20 AC 165 ms
150,968 KB
testcase_21 AC 164 ms
150,888 KB
testcase_22 AC 166 ms
150,684 KB
testcase_23 AC 86 ms
99,680 KB
testcase_24 AC 37 ms
52,224 KB
testcase_25 AC 37 ms
51,968 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 38 ms
52,224 KB
testcase_28 AC 38 ms
51,584 KB
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 38 ms
51,840 KB
testcase_32 AC 37 ms
52,352 KB
testcase_33 AC 36 ms
51,840 KB
testcase_34 AC 123 ms
135,296 KB
testcase_35 AC 60 ms
79,616 KB
testcase_36 AC 113 ms
126,532 KB
testcase_37 AC 104 ms
119,744 KB
testcase_38 AC 80 ms
97,920 KB
testcase_39 AC 73 ms
84,992 KB
testcase_40 AC 79 ms
90,624 KB
testcase_41 AC 57 ms
74,044 KB
testcase_42 AC 101 ms
113,536 KB
testcase_43 AC 108 ms
120,576 KB
testcase_44 AC 63 ms
80,768 KB
testcase_45 AC 67 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

N,M,P=map(int,input().split())
A=set(map(int,input().split()))
A=list(A)

Max=max(A)

T={}
for b in A:
    a=b
    m=1
    while b%P==0:
        b//=P
        m+=1

    if b>1 and ((b not in T) or (T[b]>m)):
        T[b]=m

if (not T) and Max<=M:
    print(-1)
    exit(0)


def f(x,k):
    if k+1>=Y:
        return float("inf")

    if x in Memo:
        return Memo[x]
    elif x>M:
        return 0
    elif x*Max>M:
        return 1

    X=float("inf")
    for b in T:
        m=T[b]
        if k+m+1<Y:
            X=min(X,f(x*b,k+m)+m)
    Memo[x]=X
    return X

Y=1
x=1
semi=max(T)
while x*Max<=M:
    x*=semi
    Y+=T[semi]

Memo={}

print(min(Y,f(1,0)))
0