結果

問題 No.1330 Multiply or Divide
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-03 15:26:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-06-11 09:56:41
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 104 ms
107,264 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 39 ms
53,888 KB
testcase_04 AC 37 ms
53,632 KB
testcase_05 AC 39 ms
53,760 KB
testcase_06 AC 82 ms
99,456 KB
testcase_07 WA -
testcase_08 AC 115 ms
101,936 KB
testcase_09 AC 115 ms
102,144 KB
testcase_10 AC 117 ms
101,760 KB
testcase_11 AC 112 ms
102,016 KB
testcase_12 AC 111 ms
101,868 KB
testcase_13 AC 49 ms
61,696 KB
testcase_14 AC 46 ms
61,312 KB
testcase_15 AC 44 ms
60,288 KB
testcase_16 AC 43 ms
60,160 KB
testcase_17 AC 44 ms
59,904 KB
testcase_18 AC 105 ms
102,016 KB
testcase_19 AC 106 ms
101,760 KB
testcase_20 AC 103 ms
101,760 KB
testcase_21 AC 106 ms
101,760 KB
testcase_22 AC 104 ms
101,632 KB
testcase_23 AC 102 ms
101,888 KB
testcase_24 AC 39 ms
53,888 KB
testcase_25 AC 38 ms
53,632 KB
testcase_26 AC 38 ms
53,504 KB
testcase_27 AC 39 ms
53,632 KB
testcase_28 AC 41 ms
53,504 KB
testcase_29 AC 39 ms
53,760 KB
testcase_30 AC 41 ms
53,760 KB
testcase_31 AC 40 ms
53,504 KB
testcase_32 AC 40 ms
53,632 KB
testcase_33 AC 37 ms
53,888 KB
testcase_34 AC 85 ms
98,560 KB
testcase_35 AC 58 ms
71,356 KB
testcase_36 AC 81 ms
94,464 KB
testcase_37 AC 77 ms
90,752 KB
testcase_38 AC 65 ms
79,616 KB
testcase_39 AC 58 ms
72,832 KB
testcase_40 AC 60 ms
75,904 KB
testcase_41 AC 54 ms
68,480 KB
testcase_42 AC 73 ms
87,808 KB
testcase_43 AC 77 ms
91,904 KB
testcase_44 AC 86 ms
99,328 KB
testcase_45 AC 93 ms
99,200 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)

dp = [0]*101
dp[0] = 1
for c, a in C.items():
    for i in range(101):
        if i+c <= 100:
            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