結果

問題 No.1330 Multiply or Divide
ユーザー c-yanc-yan
提出日時 2021-01-08 22:33:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 324 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,676 KB
最終ジャッジ日時 2024-11-16 13:29:05
合計ジャッジ時間 5,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 123 ms
30,704 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 95 ms
14,232 KB
testcase_07 WA -
testcase_08 AC 126 ms
32,644 KB
testcase_09 AC 130 ms
32,392 KB
testcase_10 AC 128 ms
32,512 KB
testcase_11 AC 125 ms
32,392 KB
testcase_12 AC 124 ms
32,516 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 26 ms
10,752 KB
testcase_17 WA -
testcase_18 AC 124 ms
32,256 KB
testcase_19 AC 123 ms
32,516 KB
testcase_20 AC 124 ms
32,516 KB
testcase_21 AC 124 ms
32,388 KB
testcase_22 AC 122 ms
32,392 KB
testcase_23 AC 117 ms
32,676 KB
testcase_24 AC 26 ms
10,752 KB
testcase_25 AC 26 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 26 ms
10,624 KB
testcase_28 AC 27 ms
10,496 KB
testcase_29 AC 26 ms
10,624 KB
testcase_30 AC 25 ms
10,752 KB
testcase_31 AC 26 ms
10,624 KB
testcase_32 AC 25 ms
10,496 KB
testcase_33 AC 26 ms
10,624 KB
testcase_34 AC 97 ms
26,880 KB
testcase_35 AC 44 ms
15,160 KB
testcase_36 AC 89 ms
25,028 KB
testcase_37 AC 81 ms
23,392 KB
testcase_38 AC 62 ms
18,612 KB
testcase_39 AC 51 ms
15,856 KB
testcase_40 AC 57 ms
17,096 KB
testcase_41 AC 42 ms
13,840 KB
testcase_42 AC 80 ms
22,260 KB
testcase_43 AC 88 ms
24,240 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    if x % P == 0:
        x //= P
    return x

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

max_A = max(A)
t = max(map(f, A))

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

if t == 1:
    print(-1)
    exit()

x = 1
result = 0
while True:
    result += 1
    if x * max_A > M:
        break
    x *= t
print(result)
0