結果

問題 No.1330 Multiply or Divide
ユーザー titiatitia
提出日時 2021-01-08 21:39:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,916 KB
最終ジャッジ日時 2024-11-16 10:43:40
合計ジャッジ時間 9,675 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 285 ms
29,320 KB
testcase_02 WA -
testcase_03 AC 54 ms
10,880 KB
testcase_04 AC 56 ms
10,496 KB
testcase_05 AC 57 ms
11,520 KB
testcase_06 AC 286 ms
15,820 KB
testcase_07 WA -
testcase_08 AC 311 ms
32,916 KB
testcase_09 AC 324 ms
32,656 KB
testcase_10 AC 301 ms
32,784 KB
testcase_11 AC 295 ms
32,424 KB
testcase_12 AC 326 ms
32,832 KB
testcase_13 AC 76 ms
13,056 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 65 ms
12,928 KB
testcase_17 WA -
testcase_18 AC 267 ms
32,548 KB
testcase_19 AC 275 ms
32,784 KB
testcase_20 AC 269 ms
32,656 KB
testcase_21 AC 272 ms
32,548 KB
testcase_22 AC 293 ms
32,608 KB
testcase_23 AC 275 ms
32,584 KB
testcase_24 AC 54 ms
11,008 KB
testcase_25 AC 54 ms
11,008 KB
testcase_26 AC 55 ms
10,880 KB
testcase_27 AC 55 ms
10,880 KB
testcase_28 AC 55 ms
10,880 KB
testcase_29 AC 56 ms
10,880 KB
testcase_30 AC 54 ms
11,008 KB
testcase_31 AC 54 ms
10,880 KB
testcase_32 AC 55 ms
10,752 KB
testcase_33 AC 55 ms
11,008 KB
testcase_34 AC 224 ms
26,780 KB
testcase_35 AC 99 ms
15,828 KB
testcase_36 AC 194 ms
25,300 KB
testcase_37 AC 184 ms
23,552 KB
testcase_38 AC 132 ms
18,524 KB
testcase_39 AC 108 ms
17,084 KB
testcase_40 AC 122 ms
17,400 KB
testcase_41 AC 89 ms
15,868 KB
testcase_42 AC 177 ms
22,292 KB
testcase_43 AC 200 ms
24,628 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]*1000
DP[0]=1

for i in range(950):
    for j in range(49,-1,-1):
        DP[i+j+1]=max(DP[i+j+1],DP[i]*K[j])
        
for i in range(1000):
    if DP[i]>M:
        print(i)
        break
else:
    print(-1)
0