結果

問題 No.1330 Multiply or Divide
ユーザー penguinmanpenguinman
提出日時 2020-10-16 04:34:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2024-11-16 19:16:37
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 86 ms
104,064 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 55 ms
61,824 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 106 ms
105,580 KB
testcase_07 AC 200 ms
108,544 KB
testcase_08 AC 129 ms
102,084 KB
testcase_09 AC 157 ms
101,888 KB
testcase_10 AC 138 ms
101,772 KB
testcase_11 AC 128 ms
101,848 KB
testcase_12 AC 131 ms
102,204 KB
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 37 ms
52,352 KB
testcase_16 AC 40 ms
52,224 KB
testcase_17 AC 40 ms
52,352 KB
testcase_18 AC 105 ms
101,888 KB
testcase_19 AC 100 ms
102,016 KB
testcase_20 AC 101 ms
102,120 KB
testcase_21 AC 100 ms
101,760 KB
testcase_22 AC 102 ms
101,776 KB
testcase_23 AC 103 ms
102,016 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 38 ms
52,096 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 AC 38 ms
52,352 KB
testcase_28 AC 38 ms
51,712 KB
testcase_29 AC 38 ms
51,584 KB
testcase_30 AC 38 ms
52,352 KB
testcase_31 AC 39 ms
52,224 KB
testcase_32 AC 42 ms
51,584 KB
testcase_33 AC 41 ms
51,584 KB
testcase_34 AC 85 ms
97,408 KB
testcase_35 AC 55 ms
69,120 KB
testcase_36 AC 80 ms
92,672 KB
testcase_37 AC 77 ms
89,088 KB
testcase_38 AC 66 ms
77,688 KB
testcase_39 AC 59 ms
71,168 KB
testcase_40 AC 58 ms
74,624 KB
testcase_41 AC 49 ms
67,072 KB
testcase_42 AC 68 ms
86,144 KB
testcase_43 AC 72 ms
90,240 KB
testcase_44 AC 91 ms
101,632 KB
testcase_45 AC 92 ms
103,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,P=input().strip().split()
N,M,P=[int(N),int(M),int(P)]
A=list(map(int, input().strip().split()))
maxi=40
Max=[0]*maxi
mem=0
for i in range(N):
    cnt=0
    mem=max(mem,A[i])
    while A[i]%P==0:
        A[i]/=P
        cnt+=1
    Max[cnt]=max(Max[cnt],A[i])
inf=1e30
dp=[-inf]*maxi*maxi
dp[0]=1
flag=1
for i in range(maxi*maxi):
    if mem*dp[i]>M:
        print(i+1)
        flag=0
        break
    for j in range(maxi):
        if j+1+i<maxi*maxi and dp[i+j+1]<dp[i]*Max[j]:
            dp[i+j+1]=dp[i]*Max[j]
if flag:
    print(-1)
0