結果

問題 No.1330 Multiply or Divide
ユーザー titiatitia
提出日時 2021-01-08 22:03:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-11-16 11:53:21
合計ジャッジ時間 7,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
109,056 KB
testcase_02 WA -
testcase_03 AC 83 ms
66,176 KB
testcase_04 AC 76 ms
64,768 KB
testcase_05 AC 76 ms
65,152 KB
testcase_06 AC 121 ms
107,264 KB
testcase_07 WA -
testcase_08 AC 163 ms
103,000 KB
testcase_09 AC 164 ms
103,116 KB
testcase_10 AC 164 ms
102,992 KB
testcase_11 AC 155 ms
102,988 KB
testcase_12 AC 172 ms
102,992 KB
testcase_13 AC 93 ms
65,920 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 94 ms
65,536 KB
testcase_17 WA -
testcase_18 AC 136 ms
102,900 KB
testcase_19 AC 134 ms
103,384 KB
testcase_20 AC 135 ms
103,000 KB
testcase_21 AC 139 ms
102,736 KB
testcase_22 AC 134 ms
103,112 KB
testcase_23 AC 135 ms
102,904 KB
testcase_24 AC 76 ms
64,768 KB
testcase_25 AC 74 ms
64,640 KB
testcase_26 AC 74 ms
65,408 KB
testcase_27 AC 73 ms
64,768 KB
testcase_28 AC 73 ms
64,768 KB
testcase_29 AC 76 ms
64,256 KB
testcase_30 AC 74 ms
64,128 KB
testcase_31 AC 77 ms
64,768 KB
testcase_32 AC 78 ms
66,048 KB
testcase_33 AC 79 ms
64,512 KB
testcase_34 AC 121 ms
102,144 KB
testcase_35 AC 93 ms
77,056 KB
testcase_36 AC 119 ms
98,944 KB
testcase_37 AC 114 ms
96,128 KB
testcase_38 AC 101 ms
85,760 KB
testcase_39 AC 94 ms
79,104 KB
testcase_40 AC 96 ms
82,176 KB
testcase_41 AC 90 ms
73,984 KB
testcase_42 AC 119 ms
94,080 KB
testcase_43 AC 115 ms
96,768 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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]))
        
for i in range(100000):
    if DP[i]>M:
        print(i)
        break
else:
    print(-1)
0