結果

問題 No.1330 Multiply or Divide
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-03 15:39:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 116,236 KB
最終ジャッジ日時 2024-06-11 09:56:55
合計ジャッジ時間 6,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,256 KB
testcase_01 AC 115 ms
107,392 KB
testcase_02 AC 47 ms
61,184 KB
testcase_03 AC 54 ms
65,280 KB
testcase_04 AC 50 ms
62,208 KB
testcase_05 AC 78 ms
83,456 KB
testcase_06 AC 93 ms
101,248 KB
testcase_07 AC 105 ms
106,752 KB
testcase_08 AC 201 ms
112,040 KB
testcase_09 AC 256 ms
115,216 KB
testcase_10 AC 220 ms
115,540 KB
testcase_11 AC 198 ms
115,808 KB
testcase_12 AC 209 ms
113,112 KB
testcase_13 AC 146 ms
103,936 KB
testcase_14 AC 105 ms
85,852 KB
testcase_15 AC 87 ms
84,224 KB
testcase_16 AC 141 ms
93,952 KB
testcase_17 AC 91 ms
81,920 KB
testcase_18 AC 136 ms
116,188 KB
testcase_19 AC 131 ms
116,236 KB
testcase_20 AC 135 ms
116,064 KB
testcase_21 AC 132 ms
115,932 KB
testcase_22 AC 136 ms
115,920 KB
testcase_23 AC 137 ms
115,968 KB
testcase_24 AC 59 ms
72,320 KB
testcase_25 AC 52 ms
67,968 KB
testcase_26 AC 63 ms
72,960 KB
testcase_27 AC 55 ms
67,968 KB
testcase_28 AC 56 ms
68,096 KB
testcase_29 AC 53 ms
68,224 KB
testcase_30 AC 51 ms
67,712 KB
testcase_31 AC 57 ms
71,040 KB
testcase_32 AC 57 ms
70,272 KB
testcase_33 AC 52 ms
67,840 KB
testcase_34 AC 120 ms
101,248 KB
testcase_35 AC 92 ms
93,952 KB
testcase_36 AC 117 ms
99,072 KB
testcase_37 AC 109 ms
97,280 KB
testcase_38 AC 95 ms
94,392 KB
testcase_39 AC 92 ms
93,864 KB
testcase_40 AC 97 ms
94,220 KB
testcase_41 AC 93 ms
93,824 KB
testcase_42 AC 104 ms
95,488 KB
testcase_43 AC 116 ms
97,280 KB
testcase_44 AC 93 ms
102,656 KB
testcase_45 AC 93 ms
102,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p = map(int, input().split())
A = list(map(int, input().split()))

from collections import defaultdict
C = defaultdict(lambda: 0)
D = []
for a in A:
    b = a
    cost = 1
    while a%p == 0:
        cost += 1
        a //= p
    C[cost] = max(C[cost], a)

M = max(A)

N = 3000
dp = [0]*(N+1)

dp[0] = 1
for c, a in C.items():
    for i in range(N+1):
        if i+c <= N:
            dp[i+c] = max(dp[i+c], dp[i]*a)
ans = 10**18
for i, x in enumerate(dp):
    if x*M> m:
        ans = min(ans, i+1)
if ans != 10**18:
    print(ans)
else:
    print(-1)
0