結果

問題 No.1330 Multiply or Divide
ユーザー H20H20
提出日時 2021-01-08 22:17:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 437 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 162,048 KB
最終ジャッジ日時 2024-11-16 12:48:21
合計ジャッジ時間 16,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 105 ms
115,072 KB
testcase_02 AC 40 ms
162,048 KB
testcase_03 AC 41 ms
56,960 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 91 ms
100,736 KB
testcase_07 TLE -
testcase_08 AC 125 ms
101,764 KB
testcase_09 AC 125 ms
101,888 KB
testcase_10 AC 123 ms
102,148 KB
testcase_11 AC 121 ms
102,140 KB
testcase_12 AC 122 ms
102,024 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 41 ms
51,456 KB
testcase_17 WA -
testcase_18 AC 111 ms
101,632 KB
testcase_19 AC 114 ms
101,504 KB
testcase_20 AC 112 ms
101,760 KB
testcase_21 AC 111 ms
101,504 KB
testcase_22 AC 111 ms
101,632 KB
testcase_23 WA -
testcase_24 AC 41 ms
51,840 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 WA -
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 40 ms
51,456 KB
testcase_29 AC 40 ms
51,456 KB
testcase_30 AC 41 ms
51,584 KB
testcase_31 AC 40 ms
51,584 KB
testcase_32 AC 40 ms
51,456 KB
testcase_33 AC 41 ms
51,840 KB
testcase_34 AC 86 ms
98,048 KB
testcase_35 AC 55 ms
68,608 KB
testcase_36 AC 81 ms
93,056 KB
testcase_37 AC 77 ms
89,088 KB
testcase_38 AC 65 ms
77,568 KB
testcase_39 AC 57 ms
70,784 KB
testcase_40 AC 62 ms
73,728 KB
testcase_41 AC 52 ms
65,792 KB
testcase_42 AC 75 ms
86,272 KB
testcase_43 AC 80 ms
90,240 KB
testcase_44 WA -
testcase_45 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,P = map(int, input().split())
A = list(map(int, input().split()))
divA = [0]*N
cntDiv = [0]*N
maxA = max(A)
if maxA>M:
    print(1)
    exit()
aaa=0
for i in range(N):
    cnt = 0
    temp = A[i]
    while temp % P ==0:
        temp=temp//P
        cnt+=1
    divA[i]=temp
    cntDiv[i]=cnt
    aaa=max(aaa,temp/(cnt+1))

if divA.count(1)==N:
    print(-1)
    exit()

cnt = 1
x = 1
while maxA*x<M:
    cnt+=1
    x*=aaa

print(cnt)
0