結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 134 ms
30,952 KB
testcase_02 WA -
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 114 ms
14,388 KB
testcase_07 WA -
testcase_08 AC 142 ms
32,644 KB
testcase_09 AC 152 ms
32,508 KB
testcase_10 AC 140 ms
32,636 KB
testcase_11 AC 136 ms
32,516 KB
testcase_12 AC 141 ms
32,508 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 29 ms
10,624 KB
testcase_17 WA -
testcase_18 AC 136 ms
32,512 KB
testcase_19 AC 134 ms
32,512 KB
testcase_20 AC 135 ms
32,508 KB
testcase_21 AC 136 ms
32,472 KB
testcase_22 AC 135 ms
32,384 KB
testcase_23 AC 132 ms
32,548 KB
testcase_24 AC 31 ms
10,496 KB
testcase_25 AC 29 ms
10,624 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 29 ms
10,624 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,624 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 29 ms
10,496 KB
testcase_33 AC 29 ms
10,496 KB
testcase_34 AC 107 ms
26,872 KB
testcase_35 AC 51 ms
15,160 KB
testcase_36 AC 102 ms
24,896 KB
testcase_37 AC 90 ms
23,516 KB
testcase_38 AC 68 ms
18,732 KB
testcase_39 AC 56 ms
16,108 KB
testcase_40 AC 61 ms
17,352 KB
testcase_41 AC 45 ms
13,832 KB
testcase_42 AC 85 ms
22,508 KB
testcase_43 AC 96 ms
24,620 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    while 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 t in [0, 1]:
    print(-1)
    exit()

x = 1
result = 1
while x * max_A <= M:
    x *= t
    result += 1
print(result)
0