結果

問題 No.1330 Multiply or Divide
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-09-13 13:05:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 105,308 KB
最終ジャッジ日時 2024-06-30 21:58:55
合計ジャッジ時間 5,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
65,284 KB
testcase_01 AC 105 ms
98,444 KB
testcase_02 AC 45 ms
56,384 KB
testcase_03 AC 54 ms
65,700 KB
testcase_04 AC 52 ms
63,632 KB
testcase_05 AC 50 ms
64,028 KB
testcase_06 AC 86 ms
101,516 KB
testcase_07 AC 108 ms
98,332 KB
testcase_08 AC 130 ms
104,652 KB
testcase_09 AC 138 ms
104,676 KB
testcase_10 AC 132 ms
105,296 KB
testcase_11 AC 124 ms
104,908 KB
testcase_12 AC 130 ms
105,308 KB
testcase_13 AC 75 ms
77,288 KB
testcase_14 AC 70 ms
77,464 KB
testcase_15 AC 58 ms
68,596 KB
testcase_16 AC 73 ms
77,972 KB
testcase_17 AC 59 ms
69,888 KB
testcase_18 AC 104 ms
102,348 KB
testcase_19 AC 103 ms
102,188 KB
testcase_20 AC 104 ms
101,984 KB
testcase_21 AC 103 ms
102,340 KB
testcase_22 AC 102 ms
101,856 KB
testcase_23 AC 103 ms
103,224 KB
testcase_24 AC 45 ms
56,420 KB
testcase_25 AC 44 ms
55,496 KB
testcase_26 AC 50 ms
63,724 KB
testcase_27 AC 43 ms
56,932 KB
testcase_28 AC 44 ms
56,444 KB
testcase_29 AC 45 ms
57,068 KB
testcase_30 AC 45 ms
56,332 KB
testcase_31 AC 46 ms
56,120 KB
testcase_32 AC 45 ms
56,624 KB
testcase_33 AC 48 ms
61,996 KB
testcase_34 AC 91 ms
94,600 KB
testcase_35 AC 57 ms
73,000 KB
testcase_36 AC 80 ms
94,876 KB
testcase_37 AC 75 ms
92,472 KB
testcase_38 AC 66 ms
82,428 KB
testcase_39 AC 60 ms
74,656 KB
testcase_40 AC 63 ms
77,436 KB
testcase_41 AC 55 ms
71,168 KB
testcase_42 AC 74 ms
89,828 KB
testcase_43 AC 80 ms
92,572 KB
testcase_44 AC 87 ms
101,476 KB
testcase_45 AC 86 ms
101,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


N,M,P = map(int,input().split())
A = list(map(int,input().split()))
C = defaultdict(int)
for a in A:
    cnt = 0
    while a%P==0:
        a //= P
        cnt += 1
    C[cnt+1] = max(C[cnt+1],a)

S = max(A)
if S>M:
    print(1)
    exit()

dp = [-1]*(1001)
dp[0] = 1 
f = lambda x:min(x,1000)
for k,v in C.items():
    
    for i in range(1000):
        if dp[i]==-1:
            continue
        dp[f(i+k)] = max(dp[f(i+k)],dp[i]*v)
        
for i in range(1000):
    if dp[i]*S>M:
        print(i+1)
        exit()
print(-1)
0