結果

問題 No.1330 Multiply or Divide
ユーザー chineristACchineristAC
提出日時 2021-01-08 23:01:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 119,296 KB
最終ジャッジ日時 2024-11-16 15:10:36
合計ジャッジ時間 29,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,343 ms
109,312 KB
testcase_02 WA -
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 46 ms
59,008 KB
testcase_06 AC 77 ms
96,512 KB
testcase_07 WA -
testcase_08 AC 1,331 ms
117,716 KB
testcase_09 AC 1,413 ms
117,588 KB
testcase_10 AC 1,146 ms
117,468 KB
testcase_11 AC 1,400 ms
117,456 KB
testcase_12 AC 1,311 ms
117,788 KB
testcase_13 AC 43 ms
59,776 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 44 ms
59,392 KB
testcase_17 WA -
testcase_18 AC 1,335 ms
117,716 KB
testcase_19 AC 1,332 ms
117,348 KB
testcase_20 AC 1,355 ms
117,472 KB
testcase_21 AC 1,349 ms
117,452 KB
testcase_22 AC 1,342 ms
117,460 KB
testcase_23 WA -
testcase_24 AC 44 ms
59,136 KB
testcase_25 AC 43 ms
58,880 KB
testcase_26 WA -
testcase_27 AC 36 ms
52,224 KB
testcase_28 AC 44 ms
58,752 KB
testcase_29 AC 44 ms
59,136 KB
testcase_30 AC 43 ms
58,496 KB
testcase_31 AC 43 ms
58,880 KB
testcase_32 AC 42 ms
59,136 KB
testcase_33 AC 42 ms
59,008 KB
testcase_34 AC 1,004 ms
105,088 KB
testcase_35 AC 302 ms
84,096 KB
testcase_36 AC 878 ms
107,008 KB
testcase_37 AC 812 ms
105,344 KB
testcase_38 AC 533 ms
93,280 KB
testcase_39 AC 402 ms
85,504 KB
testcase_40 AC 479 ms
88,576 KB
testcase_41 AC 273 ms
80,384 KB
testcase_42 AC 756 ms
102,144 KB
testcase_43 AC 867 ms
105,600 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B = []
for a in A:
    cost = 1
    while a%P==0:
        a //= P
        cost += 1
    if a!=1:
        B.append((cost,a))

n = len(B)
dp = [1 for i in range(701)]
for i in range(n):
    cost,a = B[i]
    next = [dp[j] for j in range(701)]
    for j in range(701-cost):
        next[j+cost] = max(next[j+cost],min(M,dp[j]*a),min(M,next[j]*a))
    dp = next

for i in range(701):
    if dp[i]==M:
        print(i)
        break
else:
    print(-1)
0