結果

問題 No.1330 Multiply or Divide
ユーザー chineristACchineristAC
提出日時 2021-01-08 23:08:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,701 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 119,808 KB
最終ジャッジ日時 2024-11-16 19:29:18
合計ジャッジ時間 30,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,624 KB
testcase_01 AC 1,389 ms
109,184 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 45 ms
59,136 KB
testcase_06 AC 77 ms
97,152 KB
testcase_07 AC 1,701 ms
108,800 KB
testcase_08 AC 1,367 ms
117,960 KB
testcase_09 AC 1,459 ms
117,720 KB
testcase_10 AC 1,212 ms
118,116 KB
testcase_11 AC 1,469 ms
117,688 KB
testcase_12 AC 1,350 ms
117,736 KB
testcase_13 AC 46 ms
60,032 KB
testcase_14 AC 45 ms
59,648 KB
testcase_15 AC 45 ms
59,392 KB
testcase_16 AC 45 ms
59,264 KB
testcase_17 AC 44 ms
59,648 KB
testcase_18 AC 1,386 ms
117,476 KB
testcase_19 AC 1,384 ms
117,472 KB
testcase_20 AC 1,386 ms
117,604 KB
testcase_21 AC 1,387 ms
117,208 KB
testcase_22 AC 1,384 ms
117,592 KB
testcase_23 AC 1,190 ms
117,628 KB
testcase_24 AC 45 ms
59,136 KB
testcase_25 AC 45 ms
59,264 KB
testcase_26 AC 45 ms
59,008 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 44 ms
59,136 KB
testcase_29 AC 46 ms
59,136 KB
testcase_30 AC 44 ms
58,624 KB
testcase_31 AC 44 ms
59,520 KB
testcase_32 AC 44 ms
59,008 KB
testcase_33 AC 45 ms
59,264 KB
testcase_34 AC 1,045 ms
104,960 KB
testcase_35 AC 338 ms
84,224 KB
testcase_36 AC 953 ms
106,880 KB
testcase_37 AC 848 ms
105,344 KB
testcase_38 AC 562 ms
93,184 KB
testcase_39 AC 399 ms
85,632 KB
testcase_40 AC 471 ms
89,152 KB
testcase_41 AC 267 ms
81,024 KB
testcase_42 AC 793 ms
102,144 KB
testcase_43 AC 895 ms
106,112 KB
testcase_44 AC 1,206 ms
119,424 KB
testcase_45 AC 1,344 ms
119,808 KB
権限があれば一括ダウンロードができます

ソースコード

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

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