結果

問題 No.1330 Multiply or Divide
ユーザー H3PO4H3PO4
提出日時 2021-01-08 21:30:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,264 KB
最終ジャッジ日時 2024-11-16 10:15:54
合計ジャッジ時間 8,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 250 ms
22,876 KB
testcase_02 WA -
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 127 ms
13,332 KB
testcase_07 WA -
testcase_08 AC 262 ms
26,796 KB
testcase_09 AC 277 ms
26,796 KB
testcase_10 AC 257 ms
26,796 KB
testcase_11 AC 249 ms
27,260 KB
testcase_12 AC 254 ms
26,920 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 30 ms
10,624 KB
testcase_17 WA -
testcase_18 AC 236 ms
27,132 KB
testcase_19 AC 245 ms
26,924 KB
testcase_20 AC 240 ms
26,920 KB
testcase_21 AC 256 ms
27,260 KB
testcase_22 AC 241 ms
27,264 KB
testcase_23 AC 248 ms
26,880 KB
testcase_24 AC 28 ms
10,496 KB
testcase_25 AC 29 ms
10,624 KB
testcase_26 AC 28 ms
10,624 KB
testcase_27 AC 28 ms
10,496 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 29 ms
10,624 KB
testcase_30 AC 29 ms
10,624 KB
testcase_31 AC 28 ms
10,624 KB
testcase_32 AC 30 ms
10,496 KB
testcase_33 AC 28 ms
10,624 KB
testcase_34 AC 192 ms
23,192 KB
testcase_35 AC 72 ms
13,732 KB
testcase_36 AC 176 ms
21,136 KB
testcase_37 AC 159 ms
20,588 KB
testcase_38 AC 104 ms
16,476 KB
testcase_39 AC 79 ms
14,680 KB
testcase_40 AC 94 ms
15,328 KB
testcase_41 AC 60 ms
12,868 KB
testcase_42 AC 143 ms
19,852 KB
testcase_43 AC 167 ms
21,788 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P = map(int, input().split())
A = map(int, input().split())


def solve(a):
    x = 1
    ct = 0
    div = 1
    while not a % P:
        div += 1
        a //= P

    if a == 1:
        return -1
    while x <= M:
        x *= a
        ct += div
    return ct


ans = float('inf')
for a in A:
    s = solve(a)
    if s != -1:
        ans = min(ans, s)
print(ans if ans != float('inf') else -1)
0