結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 104 ms
105,224 KB
testcase_02 AC 36 ms
52,664 KB
testcase_03 AC 35 ms
53,436 KB
testcase_04 AC 36 ms
53,356 KB
testcase_05 AC 36 ms
52,556 KB
testcase_06 AC 71 ms
97,524 KB
testcase_07 WA -
testcase_08 AC 102 ms
102,108 KB
testcase_09 AC 102 ms
101,788 KB
testcase_10 AC 102 ms
102,068 KB
testcase_11 AC 98 ms
101,848 KB
testcase_12 AC 99 ms
102,156 KB
testcase_13 AC 35 ms
52,444 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 35 ms
52,768 KB
testcase_17 WA -
testcase_18 AC 89 ms
101,892 KB
testcase_19 AC 90 ms
102,144 KB
testcase_20 AC 91 ms
101,852 KB
testcase_21 AC 92 ms
101,916 KB
testcase_22 AC 92 ms
101,932 KB
testcase_23 WA -
testcase_24 AC 35 ms
52,820 KB
testcase_25 AC 35 ms
52,220 KB
testcase_26 WA -
testcase_27 AC 35 ms
51,752 KB
testcase_28 AC 35 ms
52,128 KB
testcase_29 AC 35 ms
52,600 KB
testcase_30 AC 34 ms
52,696 KB
testcase_31 AC 35 ms
52,152 KB
testcase_32 AC 36 ms
51,924 KB
testcase_33 AC 35 ms
53,552 KB
testcase_34 AC 71 ms
96,812 KB
testcase_35 AC 48 ms
70,248 KB
testcase_36 AC 68 ms
93,096 KB
testcase_37 AC 65 ms
88,956 KB
testcase_38 AC 57 ms
77,996 KB
testcase_39 AC 51 ms
71,000 KB
testcase_40 AC 54 ms
74,572 KB
testcase_41 AC 45 ms
65,756 KB
testcase_42 AC 63 ms
85,396 KB
testcase_43 AC 65 ms
89,396 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, 0)

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