結果

問題 No.1330 Multiply or Divide
ユーザー 👑 KazunKazun
提出日時 2021-01-08 23:53:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 677 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 238,208 KB
最終ジャッジ日時 2024-11-16 18:51:35
合計ジャッジ時間 8,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,088 KB
testcase_01 TLE -
testcase_02 RE -
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 64 ms
80,512 KB
testcase_07 AC 71 ms
85,504 KB
testcase_08 AC 192 ms
151,272 KB
testcase_09 AC 205 ms
151,264 KB
testcase_10 AC 195 ms
151,272 KB
testcase_11 AC 195 ms
151,272 KB
testcase_12 AC 193 ms
150,892 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 36 ms
51,840 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 38 ms
51,712 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 92 ms
99,584 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
51,968 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 38 ms
51,712 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 66 ms
80,512 KB
testcase_45 AC 66 ms
238,208 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):
    global X
    if k+1>=X:
        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]
        X=min(X,f(x*b,k+m)+m)
    Memo[x]=X
    return X

X=1
x=1
semi=max(T)
while x*Max<=M:
    x*=semi
    X+=1

Memo={}

print(f(1,0))
0