結果

問題 No.1330 Multiply or Divide
ユーザー chineristACchineristAC
提出日時 2021-01-08 23:03:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 119,804 KB
最終ジャッジ日時 2024-11-16 15:15:53
合計ジャッジ時間 28,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,288 ms
109,696 KB
testcase_02 WA -
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 41 ms
59,392 KB
testcase_06 AC 72 ms
96,640 KB
testcase_07 WA -
testcase_08 AC 1,262 ms
117,904 KB
testcase_09 AC 1,364 ms
117,924 KB
testcase_10 AC 1,123 ms
117,976 KB
testcase_11 AC 1,393 ms
117,660 KB
testcase_12 AC 1,242 ms
117,780 KB
testcase_13 AC 44 ms
59,904 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 42 ms
59,264 KB
testcase_17 WA -
testcase_18 AC 1,291 ms
117,920 KB
testcase_19 AC 1,328 ms
117,468 KB
testcase_20 AC 1,273 ms
117,480 KB
testcase_21 AC 1,310 ms
117,792 KB
testcase_22 AC 1,298 ms
117,712 KB
testcase_23 AC 1,075 ms
117,812 KB
testcase_24 AC 44 ms
59,264 KB
testcase_25 AC 43 ms
59,264 KB
testcase_26 AC 42 ms
59,392 KB
testcase_27 AC 36 ms
51,968 KB
testcase_28 AC 40 ms
59,264 KB
testcase_29 AC 42 ms
59,392 KB
testcase_30 AC 41 ms
58,752 KB
testcase_31 AC 41 ms
59,264 KB
testcase_32 AC 43 ms
59,776 KB
testcase_33 AC 41 ms
59,136 KB
testcase_34 AC 966 ms
105,088 KB
testcase_35 AC 309 ms
84,224 KB
testcase_36 AC 862 ms
107,392 KB
testcase_37 AC 774 ms
105,536 KB
testcase_38 AC 499 ms
93,312 KB
testcase_39 AC 369 ms
85,504 KB
testcase_40 AC 443 ms
89,088 KB
testcase_41 AC 244 ms
80,640 KB
testcase_42 AC 716 ms
102,656 KB
testcase_43 AC 816 ms
106,208 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+1,dp[j]*a),min(M+1,next[j]*a))
    dp = next

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