結果

問題 No.1330 Multiply or Divide
ユーザー c-yanc-yan
提出日時 2021-01-10 00:46:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 116,684 KB
最終ジャッジ日時 2024-11-19 00:07:08
合計ジャッジ時間 5,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,980 KB
testcase_01 AC 100 ms
113,676 KB
testcase_02 AC 39 ms
55,620 KB
testcase_03 AC 39 ms
54,300 KB
testcase_04 AC 39 ms
54,336 KB
testcase_05 AC 39 ms
54,808 KB
testcase_06 AC 108 ms
109,760 KB
testcase_07 AC 116 ms
113,616 KB
testcase_08 AC 114 ms
115,972 KB
testcase_09 AC 117 ms
115,828 KB
testcase_10 AC 112 ms
115,324 KB
testcase_11 AC 109 ms
116,004 KB
testcase_12 AC 117 ms
115,480 KB
testcase_13 AC 40 ms
55,192 KB
testcase_14 AC 38 ms
55,420 KB
testcase_15 AC 40 ms
55,036 KB
testcase_16 AC 39 ms
54,444 KB
testcase_17 AC 38 ms
54,092 KB
testcase_18 AC 89 ms
112,308 KB
testcase_19 AC 92 ms
112,432 KB
testcase_20 AC 88 ms
113,048 KB
testcase_21 AC 90 ms
112,240 KB
testcase_22 AC 89 ms
112,332 KB
testcase_23 AC 102 ms
116,684 KB
testcase_24 AC 38 ms
54,180 KB
testcase_25 AC 40 ms
54,204 KB
testcase_26 AC 38 ms
55,720 KB
testcase_27 AC 38 ms
55,828 KB
testcase_28 AC 38 ms
55,328 KB
testcase_29 AC 38 ms
54,580 KB
testcase_30 AC 37 ms
53,540 KB
testcase_31 AC 38 ms
54,048 KB
testcase_32 AC 39 ms
54,308 KB
testcase_33 AC 40 ms
55,416 KB
testcase_34 AC 80 ms
100,520 KB
testcase_35 AC 50 ms
70,876 KB
testcase_36 AC 73 ms
97,160 KB
testcase_37 AC 72 ms
92,928 KB
testcase_38 AC 59 ms
80,116 KB
testcase_39 AC 53 ms
74,116 KB
testcase_40 AC 55 ms
75,960 KB
testcase_41 AC 48 ms
67,936 KB
testcase_42 AC 69 ms
89,360 KB
testcase_43 AC 70 ms
93,844 KB
testcase_44 AC 104 ms
109,864 KB
testcase_45 AC 105 ms
109,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = 10 ** 20

N, M, P, *A = map(int, open(0).read().split())

def f(x):
    c = 0
    while x % P == 0:
        c += 1
        x //= P
    return (x, c)

max_A = max(A)

if max_A > M:
    print(1)
    exit()

b = {}
for m, c in map(f, A):
    b.setdefault(c, 0)
    b[c] = max(b[c], m)
for k in list(b):
    if b[k] == 1:
        del b[k]
t = 1
for k in sorted(b):
    if b[k] <= t:
        del b[k]
    else:
        t = b[k]
cs = sorted(b)

if len(cs) == 0:
    print(-1)
    exit()

result = INF
q = deque([(0, 1)])
d = {}
d[0] = 1
while q:
    c, x = q.popleft()
    if x * max_A > M:
        print(c + 1)
        break
    for k in cs:
        d.setdefault(c + 1 + k, 0)
        if x * b[k] > d[c + 1 + k]:
            d[c + 1 + k] = x * b[k]
            q.append((c + 1 + k, x * b[k]))
0