結果

問題 No.1330 Multiply or Divide
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-25 13:03:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,016 KB
最終ジャッジ日時 2024-07-05 12:04:15
合計ジャッジ時間 8,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 260 ms
29,432 KB
testcase_02 WA -
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 153 ms
14,752 KB
testcase_07 WA -
testcase_08 AC 279 ms
32,892 KB
testcase_09 AC 297 ms
32,888 KB
testcase_10 AC 275 ms
33,016 KB
testcase_11 AC 263 ms
32,524 KB
testcase_12 AC 275 ms
32,888 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 101 ms
32,648 KB
testcase_19 AC 100 ms
33,012 KB
testcase_20 AC 99 ms
33,016 KB
testcase_21 AC 101 ms
32,520 KB
testcase_22 AC 101 ms
32,520 KB
testcase_23 WA -
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 WA -
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 28 ms
10,624 KB
testcase_33 AC 28 ms
10,624 KB
testcase_34 AC 84 ms
26,884 KB
testcase_35 AC 43 ms
15,036 KB
testcase_36 AC 75 ms
25,272 KB
testcase_37 AC 68 ms
23,732 KB
testcase_38 AC 56 ms
18,752 KB
testcase_39 AC 46 ms
16,328 KB
testcase_40 AC 52 ms
17,360 KB
testcase_41 AC 40 ms
13,972 KB
testcase_42 AC 68 ms
22,648 KB
testcase_43 AC 73 ms
24,608 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P = map(int, input().split())
A = list(map(int, input().split()))
if M == 1:
    print(0)
    exit()

last = max(A)   # これ、最後に必ずかける
target = (M + last - 1) // last

if target == 1:
    print(1)
    exit()

ans = 10 ** 18
for a in A:
    cnt = 1
    x = a
    while x % P == 0:
        cnt += 1
        x //= P
    if x == 1:
        continue

    tmp = cnt * ((target + x - 1) // x) + 1
    ans = min(ans, tmp)

if ans >= 10 ** 18:
    ans = -1
print(ans)
0