結果

問題 No.1330 Multiply or Divide
ユーザー roarisroaris
提出日時 2021-06-04 17:44:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 105,812 KB
最終ジャッジ日時 2024-11-19 03:56:41
合計ジャッジ時間 5,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,964 KB
testcase_01 AC 97 ms
105,812 KB
testcase_02 AC 39 ms
55,040 KB
testcase_03 AC 44 ms
62,840 KB
testcase_04 AC 46 ms
63,996 KB
testcase_05 AC 45 ms
63,544 KB
testcase_06 AC 79 ms
100,860 KB
testcase_07 AC 96 ms
105,780 KB
testcase_08 AC 116 ms
101,112 KB
testcase_09 AC 128 ms
100,588 KB
testcase_10 AC 118 ms
101,224 KB
testcase_11 AC 121 ms
101,476 KB
testcase_12 AC 121 ms
101,288 KB
testcase_13 AC 67 ms
77,740 KB
testcase_14 AC 63 ms
76,740 KB
testcase_15 AC 53 ms
73,712 KB
testcase_16 AC 61 ms
76,956 KB
testcase_17 AC 50 ms
68,372 KB
testcase_18 AC 95 ms
99,412 KB
testcase_19 AC 99 ms
99,308 KB
testcase_20 AC 97 ms
99,568 KB
testcase_21 AC 97 ms
99,288 KB
testcase_22 AC 96 ms
99,164 KB
testcase_23 AC 96 ms
101,212 KB
testcase_24 AC 45 ms
63,496 KB
testcase_25 AC 40 ms
54,868 KB
testcase_26 AC 45 ms
63,740 KB
testcase_27 AC 42 ms
55,884 KB
testcase_28 AC 39 ms
55,312 KB
testcase_29 AC 42 ms
55,280 KB
testcase_30 AC 40 ms
55,040 KB
testcase_31 AC 45 ms
64,068 KB
testcase_32 AC 48 ms
62,764 KB
testcase_33 AC 42 ms
56,380 KB
testcase_34 AC 82 ms
99,896 KB
testcase_35 AC 54 ms
74,368 KB
testcase_36 AC 81 ms
98,080 KB
testcase_37 AC 72 ms
92,376 KB
testcase_38 AC 62 ms
82,704 KB
testcase_39 AC 57 ms
75,464 KB
testcase_40 AC 59 ms
78,380 KB
testcase_41 AC 52 ms
72,096 KB
testcase_42 AC 69 ms
89,324 KB
testcase_43 AC 78 ms
96,140 KB
testcase_44 AC 81 ms
101,408 KB
testcase_45 AC 79 ms
100,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M, P = map(int, input().split())
A = list(map(int, input().split()))
Ma = max(A)
d = defaultdict(int)

for Ai in A:
    cost = 1
    
    while Ai%P==0:
        cost += 1
        Ai //= P
    
    d[cost] = max(d[cost], Ai)

dp = [0]*1000
dp[0] = 1

for i in range(1000):
    for k, v in d.items():
        if i+k<1000:
            dp[i+k] = max(dp[i+k], dp[i]*v)

for i in range(1000):
    if dp[i]*Ma>M:
        exit(print(i+1))

print(-1)
0