結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,716 KB
testcase_01 AC 106 ms
113,636 KB
testcase_02 AC 42 ms
53,832 KB
testcase_03 AC 45 ms
55,084 KB
testcase_04 AC 43 ms
54,864 KB
testcase_05 AC 43 ms
55,008 KB
testcase_06 AC 123 ms
109,528 KB
testcase_07 AC 122 ms
113,272 KB
testcase_08 AC 122 ms
115,892 KB
testcase_09 AC 126 ms
115,732 KB
testcase_10 AC 124 ms
115,424 KB
testcase_11 AC 119 ms
115,504 KB
testcase_12 AC 127 ms
115,848 KB
testcase_13 AC 44 ms
54,428 KB
testcase_14 AC 44 ms
54,216 KB
testcase_15 AC 44 ms
53,688 KB
testcase_16 AC 44 ms
54,352 KB
testcase_17 AC 43 ms
55,312 KB
testcase_18 AC 95 ms
113,172 KB
testcase_19 AC 95 ms
112,916 KB
testcase_20 AC 96 ms
112,100 KB
testcase_21 AC 97 ms
112,092 KB
testcase_22 AC 97 ms
112,164 KB
testcase_23 AC 109 ms
116,352 KB
testcase_24 AC 43 ms
53,752 KB
testcase_25 AC 44 ms
55,172 KB
testcase_26 AC 43 ms
54,560 KB
testcase_27 AC 42 ms
55,252 KB
testcase_28 AC 44 ms
54,208 KB
testcase_29 AC 44 ms
54,232 KB
testcase_30 AC 44 ms
54,340 KB
testcase_31 AC 43 ms
55,236 KB
testcase_32 AC 42 ms
54,208 KB
testcase_33 AC 43 ms
55,120 KB
testcase_34 AC 86 ms
100,400 KB
testcase_35 AC 56 ms
71,492 KB
testcase_36 AC 79 ms
96,556 KB
testcase_37 AC 76 ms
92,508 KB
testcase_38 AC 64 ms
79,816 KB
testcase_39 AC 58 ms
74,072 KB
testcase_40 AC 61 ms
75,828 KB
testcase_41 AC 53 ms
68,104 KB
testcase_42 AC 74 ms
89,172 KB
testcase_43 AC 78 ms
93,936 KB
testcase_44 AC 112 ms
109,720 KB
testcase_45 AC 113 ms
109,372 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