結果

問題 No.1330 Multiply or Divide
ユーザー titiatitia
提出日時 2021-01-08 22:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,440 KB
最終ジャッジ日時 2024-11-16 19:20:13
合計ジャッジ時間 7,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
65,920 KB
testcase_01 AC 136 ms
109,312 KB
testcase_02 AC 78 ms
64,256 KB
testcase_03 AC 84 ms
66,432 KB
testcase_04 AC 80 ms
65,152 KB
testcase_05 AC 80 ms
64,896 KB
testcase_06 AC 130 ms
107,520 KB
testcase_07 AC 145 ms
109,440 KB
testcase_08 AC 169 ms
103,004 KB
testcase_09 AC 172 ms
103,132 KB
testcase_10 AC 172 ms
103,388 KB
testcase_11 AC 157 ms
103,120 KB
testcase_12 AC 179 ms
103,392 KB
testcase_13 AC 97 ms
65,664 KB
testcase_14 AC 101 ms
65,792 KB
testcase_15 AC 112 ms
66,176 KB
testcase_16 AC 103 ms
65,536 KB
testcase_17 AC 109 ms
65,664 KB
testcase_18 AC 147 ms
102,864 KB
testcase_19 AC 146 ms
103,128 KB
testcase_20 AC 147 ms
102,880 KB
testcase_21 AC 146 ms
103,000 KB
testcase_22 AC 146 ms
103,128 KB
testcase_23 AC 147 ms
103,032 KB
testcase_24 AC 82 ms
65,408 KB
testcase_25 AC 80 ms
64,384 KB
testcase_26 AC 82 ms
64,896 KB
testcase_27 AC 79 ms
64,512 KB
testcase_28 AC 80 ms
64,896 KB
testcase_29 AC 79 ms
64,256 KB
testcase_30 AC 80 ms
64,512 KB
testcase_31 AC 81 ms
64,768 KB
testcase_32 AC 85 ms
66,304 KB
testcase_33 AC 81 ms
65,024 KB
testcase_34 AC 128 ms
102,400 KB
testcase_35 AC 98 ms
77,568 KB
testcase_36 AC 125 ms
99,072 KB
testcase_37 AC 122 ms
96,384 KB
testcase_38 AC 109 ms
86,016 KB
testcase_39 AC 99 ms
79,232 KB
testcase_40 AC 102 ms
82,432 KB
testcase_41 AC 93 ms
74,496 KB
testcase_42 AC 116 ms
94,336 KB
testcase_43 AC 120 ms
96,640 KB
testcase_44 AC 131 ms
107,520 KB
testcase_45 AC 131 ms
107,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

B=[0]*N
C=[0]*N

for i in range(N):
    a=A[i]
    while a%P==0:
        B[i]+=1
        a//=P
    C[i]=a

K=[0]*50

for i in range(N):
    K[B[i]]=max(K[B[i]],C[i])


DP=[0]*100000
DP[0]=1

for i in range(95000):
    for j in range(49,-1,-1):
        DP[i+j+1]=min(10**9+1,max(DP[i+j+1],DP[i]*K[j]))

MAX=max(A)
for i in range(100000):
    if DP[i]>M/MAX:
        print(i+1)
        break
else:
    print(-1)
0