結果

問題 No.1330 Multiply or Divide
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-09 15:08:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 870 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,788 KB
最終ジャッジ日時 2024-11-17 19:02:49
合計ジャッジ時間 6,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,752 KB
testcase_01 AC 198 ms
29,332 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 23 ms
10,624 KB
testcase_04 AC 56 ms
10,752 KB
testcase_05 AC 23 ms
10,752 KB
testcase_06 AC 166 ms
13,916 KB
testcase_07 AC 870 ms
30,684 KB
testcase_08 AC 210 ms
32,788 KB
testcase_09 AC 239 ms
32,780 KB
testcase_10 AC 206 ms
32,784 KB
testcase_11 AC 195 ms
32,420 KB
testcase_12 AC 208 ms
32,780 KB
testcase_13 AC 24 ms
10,752 KB
testcase_14 AC 23 ms
10,752 KB
testcase_15 AC 23 ms
10,624 KB
testcase_16 AC 23 ms
10,624 KB
testcase_17 AC 23 ms
10,624 KB
testcase_18 AC 85 ms
32,420 KB
testcase_19 AC 82 ms
32,784 KB
testcase_20 AC 84 ms
32,788 KB
testcase_21 AC 86 ms
32,548 KB
testcase_22 AC 85 ms
32,548 KB
testcase_23 AC 189 ms
32,368 KB
testcase_24 AC 24 ms
10,624 KB
testcase_25 AC 24 ms
10,624 KB
testcase_26 AC 23 ms
10,752 KB
testcase_27 AC 23 ms
10,752 KB
testcase_28 AC 23 ms
10,752 KB
testcase_29 AC 23 ms
10,752 KB
testcase_30 AC 23 ms
10,752 KB
testcase_31 AC 23 ms
10,752 KB
testcase_32 AC 23 ms
10,752 KB
testcase_33 AC 25 ms
10,496 KB
testcase_34 AC 72 ms
26,908 KB
testcase_35 AC 37 ms
15,184 KB
testcase_36 AC 64 ms
25,188 KB
testcase_37 AC 60 ms
23,556 KB
testcase_38 AC 46 ms
18,524 KB
testcase_39 AC 38 ms
16,096 KB
testcase_40 AC 42 ms
17,384 KB
testcase_41 AC 33 ms
14,124 KB
testcase_42 AC 57 ms
22,668 KB
testcase_43 AC 62 ms
24,504 KB
testcase_44 AC 206 ms
14,048 KB
testcase_45 AC 207 ms
14,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p = map(int,input().split())
a = list(map(int,input().split()))
ans = float("INF")
ma = max(a)
if ma > m:
    print(1)
    exit()
MAX = [0]*40
for i in a:
    now = i
    count = 1
    while now%p == 0:
        now //= p
        count += 1
    if now == 1:
        continue
    MAX[count] = max(MAX[count],now)
dp = [0]*2000
dp[0] = 1
for i in range(1600):
    if ma * dp[i] > m:
        print(i+1)
        exit()
    for j in range(40):
        dp[i+j] = max(dp[i+j],dp[i]*MAX[j])
print(-1)
0