結果

問題 No.1330 Multiply or Divide
ユーザー 👑 Kazun
提出日時 2021-01-08 22:30:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 157,184 KB
最終ジャッジ日時 2024-11-16 13:23:44
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 36 WA * 10
権限があれば一括ダウンロードができます

ソースコード

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 M<=Max:
    print(-1)
    exit(0)

X=float("inf")
for b in T:
    m=T[b]
    k=1
    x=1
    while x*Max<=M:
        x*=b
        k+=m
    X=min(X,k)
print(X)
0