結果

問題 No.1330 Multiply or Divide
ユーザー 👑 KazunKazun
提出日時 2021-01-09 00:16:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 157,288 KB
最終ジャッジ日時 2024-11-16 19:38:01
合計ジャッジ時間 6,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 162 ms
157,288 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 57 ms
81,024 KB
testcase_07 AC 67 ms
85,888 KB
testcase_08 AC 174 ms
151,152 KB
testcase_09 AC 176 ms
151,068 KB
testcase_10 AC 165 ms
151,060 KB
testcase_11 AC 166 ms
150,680 KB
testcase_12 AC 164 ms
151,296 KB
testcase_13 AC 34 ms
52,224 KB
testcase_14 AC 35 ms
52,224 KB
testcase_15 AC 33 ms
51,712 KB
testcase_16 AC 34 ms
52,304 KB
testcase_17 AC 35 ms
51,968 KB
testcase_18 AC 152 ms
151,200 KB
testcase_19 AC 163 ms
150,672 KB
testcase_20 AC 148 ms
150,684 KB
testcase_21 AC 152 ms
150,852 KB
testcase_22 AC 152 ms
151,256 KB
testcase_23 AC 79 ms
99,784 KB
testcase_24 AC 35 ms
52,144 KB
testcase_25 AC 35 ms
51,968 KB
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 35 ms
52,224 KB
testcase_28 AC 34 ms
51,712 KB
testcase_29 AC 33 ms
51,840 KB
testcase_30 AC 33 ms
52,224 KB
testcase_31 AC 33 ms
51,908 KB
testcase_32 AC 37 ms
52,224 KB
testcase_33 AC 33 ms
51,968 KB
testcase_34 AC 116 ms
134,964 KB
testcase_35 AC 61 ms
79,744 KB
testcase_36 AC 105 ms
127,232 KB
testcase_37 AC 106 ms
119,680 KB
testcase_38 AC 80 ms
97,920 KB
testcase_39 AC 69 ms
84,848 KB
testcase_40 AC 76 ms
91,008 KB
testcase_41 AC 54 ms
73,976 KB
testcase_42 AC 92 ms
114,176 KB
testcase_43 AC 105 ms
120,772 KB
testcase_44 AC 57 ms
80,668 KB
testcase_45 AC 56 ms
80,896 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

try:
    Y=1
    x=1
    semi=max(T)
    while x*Max<=M:
        x*=semi
        Y+=T[semi]
except:
    Y=float("inf")

Memo={}

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