結果

問題 No.1330 Multiply or Divide
ユーザー mkawa2
提出日時 2021-01-08 21:47:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 1,215 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,684 KB
最終ジャッジ日時 2024-11-16 11:05:51
合計ジャッジ時間 8,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 45 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [[(-1, 0), (1, 0)], [(0, -1), (0, 1)]]
inf = 10**16
# md = 998244353
md = 10**9+7

from collections import defaultdict

n,m,p=MI()
aa=LI()

cc=defaultdict(int)
for a in aa:
    k=0
    while a%p==0:
        a//=p
        k+=1
    cc[k]=max(cc[k],a)
# print(cc)

amx=max(aa)
t=(m+amx)//amx

def chmax(i,val):
    if i>64:return
    if val>dp[i]:dp[i]=val

dp=[-1]*65
dp[0]=1
for i in range(64):
    pre=dp[i]
    if dp[i]>=t:
        print(i+1)
        exit()
    if pre==-1:continue
    for k,c in cc.items():
        chmax(i+k+1,pre*c)
    # print(dp)

print(-1)
0