結果

問題 No.1330 Multiply or Divide
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-09-13 12:42:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 116,032 KB
最終ジャッジ日時 2024-06-30 21:40:46
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 113 ms
111,208 KB
testcase_02 AC 45 ms
55,624 KB
testcase_03 AC 45 ms
57,524 KB
testcase_04 AC 45 ms
55,768 KB
testcase_05 AC 45 ms
56,816 KB
testcase_06 AC 97 ms
115,372 KB
testcase_07 WA -
testcase_08 AC 124 ms
115,616 KB
testcase_09 AC 125 ms
115,744 KB
testcase_10 AC 124 ms
115,504 KB
testcase_11 AC 121 ms
115,508 KB
testcase_12 AC 122 ms
115,520 KB
testcase_13 AC 46 ms
55,624 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 46 ms
55,960 KB
testcase_17 WA -
testcase_18 AC 118 ms
115,360 KB
testcase_19 AC 116 ms
115,360 KB
testcase_20 AC 116 ms
115,376 KB
testcase_21 AC 116 ms
115,356 KB
testcase_22 AC 117 ms
114,972 KB
testcase_23 AC 117 ms
115,600 KB
testcase_24 AC 47 ms
56,052 KB
testcase_25 AC 45 ms
55,812 KB
testcase_26 AC 46 ms
55,236 KB
testcase_27 AC 46 ms
55,936 KB
testcase_28 AC 46 ms
55,836 KB
testcase_29 AC 46 ms
56,024 KB
testcase_30 AC 45 ms
56,192 KB
testcase_31 AC 46 ms
55,932 KB
testcase_32 AC 46 ms
56,880 KB
testcase_33 AC 45 ms
55,520 KB
testcase_34 AC 104 ms
104,360 KB
testcase_35 AC 62 ms
76,352 KB
testcase_36 AC 91 ms
97,288 KB
testcase_37 AC 85 ms
100,188 KB
testcase_38 AC 71 ms
87,472 KB
testcase_39 AC 62 ms
77,668 KB
testcase_40 AC 67 ms
82,840 KB
testcase_41 AC 59 ms
72,468 KB
testcase_42 AC 80 ms
96,656 KB
testcase_43 AC 91 ms
102,496 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


N,M,P = map(int,input().split())
A = list(map(int,input().split()))
B = []

for a in A:
    while a%P==0:
        a //= P
    B.append(a)

L = max(B)
S = max(A)
if S>M:
    print(1)
    exit()

if L==1:
    print(-1)
    exit()
now = S
cnt = 1
while now <= M:
    cnt += 1
    now *= L
print(cnt)
0