結果

問題 No.1330 Multiply or Divide
ユーザー 👑 KazunKazun
提出日時 2021-01-08 23:11:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 238,808 KB
最終ジャッジ日時 2024-11-16 16:13:50
合計ジャッジ時間 8,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 AC 37 ms
52,424 KB
testcase_03 AC 37 ms
52,348 KB
testcase_04 AC 36 ms
52,080 KB
testcase_05 AC 37 ms
53,296 KB
testcase_06 AC 61 ms
81,700 KB
testcase_07 WA -
testcase_08 AC 176 ms
151,316 KB
testcase_09 AC 181 ms
151,168 KB
testcase_10 AC 170 ms
151,292 KB
testcase_11 AC 170 ms
151,060 KB
testcase_12 AC 175 ms
151,220 KB
testcase_13 AC 37 ms
52,440 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 40 ms
52,316 KB
testcase_17 WA -
testcase_18 AC 165 ms
150,676 KB
testcase_19 AC 164 ms
151,124 KB
testcase_20 AC 163 ms
150,644 KB
testcase_21 AC 164 ms
150,668 KB
testcase_22 AC 163 ms
150,888 KB
testcase_23 AC 87 ms
99,860 KB
testcase_24 AC 37 ms
52,628 KB
testcase_25 AC 37 ms
53,636 KB
testcase_26 AC 36 ms
52,912 KB
testcase_27 AC 37 ms
52,064 KB
testcase_28 AC 37 ms
51,952 KB
testcase_29 AC 38 ms
52,572 KB
testcase_30 AC 37 ms
52,880 KB
testcase_31 AC 37 ms
51,624 KB
testcase_32 AC 37 ms
52,144 KB
testcase_33 AC 36 ms
52,992 KB
testcase_34 AC 121 ms
134,576 KB
testcase_35 AC 66 ms
79,204 KB
testcase_36 AC 118 ms
126,256 KB
testcase_37 AC 108 ms
119,296 KB
testcase_38 AC 83 ms
97,792 KB
testcase_39 AC 73 ms
84,736 KB
testcase_40 AC 84 ms
90,368 KB
testcase_41 AC 62 ms
73,600 KB
testcase_42 AC 109 ms
113,280 KB
testcase_43 AC 120 ms
120,576 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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

    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)

Memo={}

def f(x):
    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)+m)
    Memo[x]=X
    return X
print(f(1))
0