結果

問題 No.1330 Multiply or Divide
ユーザー 👑 rin204rin204
提出日時 2022-03-23 21:38:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 105,172 KB
最終ジャッジ日時 2024-10-12 00:30:10
合計ジャッジ時間 4,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 88 ms
105,172 KB
testcase_02 AC 39 ms
53,152 KB
testcase_03 AC 38 ms
52,364 KB
testcase_04 AC 37 ms
52,252 KB
testcase_05 AC 38 ms
52,568 KB
testcase_06 AC 74 ms
97,504 KB
testcase_07 WA -
testcase_08 AC 103 ms
102,052 KB
testcase_09 AC 106 ms
101,904 KB
testcase_10 AC 104 ms
101,932 KB
testcase_11 AC 102 ms
102,084 KB
testcase_12 AC 103 ms
102,124 KB
testcase_13 AC 38 ms
52,212 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 37 ms
52,408 KB
testcase_17 WA -
testcase_18 AC 93 ms
102,096 KB
testcase_19 AC 94 ms
102,032 KB
testcase_20 AC 93 ms
101,976 KB
testcase_21 AC 93 ms
102,260 KB
testcase_22 AC 95 ms
101,916 KB
testcase_23 WA -
testcase_24 AC 38 ms
52,616 KB
testcase_25 AC 37 ms
52,616 KB
testcase_26 WA -
testcase_27 AC 37 ms
52,408 KB
testcase_28 AC 37 ms
53,620 KB
testcase_29 AC 37 ms
53,408 KB
testcase_30 AC 38 ms
52,020 KB
testcase_31 AC 38 ms
53,156 KB
testcase_32 AC 37 ms
52,756 KB
testcase_33 AC 38 ms
52,488 KB
testcase_34 AC 75 ms
97,568 KB
testcase_35 AC 49 ms
69,044 KB
testcase_36 AC 71 ms
92,756 KB
testcase_37 AC 68 ms
88,184 KB
testcase_38 AC 57 ms
77,420 KB
testcase_39 AC 51 ms
70,288 KB
testcase_40 AC 54 ms
73,712 KB
testcase_41 AC 47 ms
66,372 KB
testcase_42 AC 65 ms
86,880 KB
testcase_43 AC 69 ms
90,756 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p = map(int, input().split())
A = list(map(int, input().split()))
ma = max(A)
m = (m + ma - 1) // ma
if m == 1:
    print(1)
    exit()
ma = 0
for a in A:
    while a % p == 0:
        a //= p
    ma = max(a, ma)

if ma == 1:
    print(-1)
    exit()
i = 1
ans = 1
while i < m:
    i *= ma
    ans += 1
print(ans)
0