結果

問題 No.1330 Multiply or Divide
ユーザー c-yanc-yan
提出日時 2021-01-08 22:45:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 482 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-11-16 18:27:19
合計ジャッジ時間 10,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 325 ms
29,304 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 135 ms
14,312 KB
testcase_07 AC 1,108 ms
30,556 KB
testcase_08 AC 335 ms
32,660 KB
testcase_09 AC 344 ms
32,276 KB
testcase_10 AC 359 ms
32,432 KB
testcase_11 AC 321 ms
32,504 KB
testcase_12 AC 349 ms
32,528 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 28 ms
10,496 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 96 ms
32,528 KB
testcase_19 AC 94 ms
32,660 KB
testcase_20 AC 95 ms
32,400 KB
testcase_21 AC 95 ms
32,280 KB
testcase_22 AC 94 ms
32,528 KB
testcase_23 AC 333 ms
32,568 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 27 ms
10,496 KB
testcase_26 AC 28 ms
10,624 KB
testcase_27 AC 26 ms
10,496 KB
testcase_28 AC 27 ms
10,496 KB
testcase_29 AC 27 ms
10,752 KB
testcase_30 AC 27 ms
10,496 KB
testcase_31 AC 27 ms
10,624 KB
testcase_32 AC 27 ms
10,496 KB
testcase_33 AC 28 ms
10,496 KB
testcase_34 AC 78 ms
26,888 KB
testcase_35 AC 40 ms
14,796 KB
testcase_36 AC 70 ms
25,044 KB
testcase_37 AC 67 ms
23,276 KB
testcase_38 AC 52 ms
18,380 KB
testcase_39 AC 45 ms
16,004 KB
testcase_40 AC 46 ms
16,980 KB
testcase_41 AC 38 ms
13,976 KB
testcase_42 AC 65 ms
22,408 KB
testcase_43 AC 72 ms
24,260 KB
testcase_44 AC 1,359 ms
14,180 KB
testcase_45 AC 1,946 ms
14,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

max_A = max(A)

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

result = 10 ** 20
for m, c in map(f, A):
    if m == 1:
        continue
    t = 0
    x = 1
    while True:
        t += 1
        if x * max_A > M:
            break
        t += c
        x *= m
    result = min(result, t)
if result == 10 ** 20:
    print(-1)
else:
    print(result)
0