結果

問題 No.1330 Multiply or Divide
ユーザー c-yanc-yan
提出日時 2021-01-10 01:05:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 115,716 KB
最終ジャッジ日時 2024-11-19 01:24:58
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,284 KB
testcase_01 AC 94 ms
113,428 KB
testcase_02 AC 36 ms
54,500 KB
testcase_03 AC 37 ms
53,216 KB
testcase_04 AC 37 ms
52,588 KB
testcase_05 AC 35 ms
52,900 KB
testcase_06 AC 99 ms
109,428 KB
testcase_07 AC 109 ms
113,384 KB
testcase_08 AC 108 ms
115,716 KB
testcase_09 AC 119 ms
115,644 KB
testcase_10 AC 112 ms
115,572 KB
testcase_11 AC 109 ms
115,640 KB
testcase_12 AC 109 ms
115,508 KB
testcase_13 AC 37 ms
54,204 KB
testcase_14 AC 37 ms
53,980 KB
testcase_15 AC 36 ms
53,296 KB
testcase_16 AC 35 ms
53,420 KB
testcase_17 AC 35 ms
52,948 KB
testcase_18 AC 84 ms
111,516 KB
testcase_19 AC 86 ms
112,024 KB
testcase_20 AC 84 ms
111,984 KB
testcase_21 AC 86 ms
111,560 KB
testcase_22 AC 84 ms
111,352 KB
testcase_23 AC 94 ms
114,084 KB
testcase_24 AC 35 ms
52,872 KB
testcase_25 AC 37 ms
52,660 KB
testcase_26 AC 36 ms
52,892 KB
testcase_27 AC 36 ms
53,744 KB
testcase_28 AC 36 ms
54,024 KB
testcase_29 AC 38 ms
54,136 KB
testcase_30 AC 36 ms
53,804 KB
testcase_31 AC 35 ms
53,004 KB
testcase_32 AC 34 ms
53,124 KB
testcase_33 AC 35 ms
52,980 KB
testcase_34 AC 74 ms
101,076 KB
testcase_35 AC 47 ms
69,832 KB
testcase_36 AC 72 ms
95,116 KB
testcase_37 AC 68 ms
90,896 KB
testcase_38 AC 57 ms
78,900 KB
testcase_39 AC 50 ms
71,656 KB
testcase_40 AC 54 ms
75,208 KB
testcase_41 AC 47 ms
67,012 KB
testcase_42 AC 67 ms
87,872 KB
testcase_43 AC 70 ms
92,312 KB
testcase_44 AC 97 ms
109,000 KB
testcase_45 AC 99 ms
109,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

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)
t = 1
for k in sorted(b):
    if b[k] <= t:
        del b[k]
    else:
        t = b[k]

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

q = [(0, 1)]
max_x = {}
max_x[0] = 1
while q:
    c, x = heappop(q)
    if max_x[c] > x:
        continue
    if x * max_A > M:
        print(c + 1)
        break
    for k in b:
        nc = c + 1 + k
        nx = x * b[k]
        max_x.setdefault(nc, 0)
        if nx > max_x[nc]:
            max_x[nc] = nx
            heappush(q, (nc, nx))
0