結果

問題 No.1330 Multiply or Divide
ユーザー c-yanc-yan
提出日時 2021-01-10 00:52:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 591 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 32,736 KB
最終ジャッジ日時 2024-11-19 00:31:52
合計ジャッジ時間 6,988 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 263 ms
29,476 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 241 ms
14,328 KB
testcase_07 AC 591 ms
29,608 KB
testcase_08 AC 270 ms
32,448 KB
testcase_09 AC 287 ms
32,576 KB
testcase_10 AC 271 ms
32,712 KB
testcase_11 AC 262 ms
32,448 KB
testcase_12 AC 275 ms
32,572 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 106 ms
32,572 KB
testcase_19 AC 105 ms
32,704 KB
testcase_20 AC 103 ms
32,700 KB
testcase_21 AC 105 ms
32,644 KB
testcase_22 AC 104 ms
32,580 KB
testcase_23 AC 255 ms
32,736 KB
testcase_24 AC 33 ms
10,752 KB
testcase_25 AC 32 ms
10,624 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 32 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 32 ms
10,752 KB
testcase_32 AC 32 ms
10,624 KB
testcase_33 AC 31 ms
10,624 KB
testcase_34 AC 88 ms
26,932 KB
testcase_35 AC 47 ms
15,212 KB
testcase_36 AC 81 ms
25,084 KB
testcase_37 AC 76 ms
23,580 KB
testcase_38 AC 58 ms
18,800 KB
testcase_39 AC 51 ms
16,268 KB
testcase_40 AC 53 ms
17,412 KB
testcase_41 AC 43 ms
14,148 KB
testcase_42 AC 70 ms
22,492 KB
testcase_43 AC 79 ms
24,560 KB
testcase_44 AC 240 ms
14,328 KB
testcase_45 AC 241 ms
14,204 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)
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()

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