結果

問題 No.1330 Multiply or Divide
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-08 21:49:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 120,576 KB
最終ジャッジ日時 2024-11-16 19:18:43
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 116 ms
120,576 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 96 ms
113,024 KB
testcase_07 AC 309 ms
120,064 KB
testcase_08 AC 133 ms
113,732 KB
testcase_09 AC 125 ms
113,920 KB
testcase_10 AC 129 ms
113,860 KB
testcase_11 AC 127 ms
113,984 KB
testcase_12 AC 128 ms
113,860 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 40 ms
51,584 KB
testcase_17 AC 38 ms
51,584 KB
testcase_18 AC 115 ms
113,604 KB
testcase_19 AC 114 ms
113,988 KB
testcase_20 AC 117 ms
113,864 KB
testcase_21 AC 118 ms
113,512 KB
testcase_22 AC 118 ms
113,608 KB
testcase_23 AC 120 ms
114,172 KB
testcase_24 AC 39 ms
51,840 KB
testcase_25 AC 39 ms
51,840 KB
testcase_26 AC 39 ms
51,584 KB
testcase_27 AC 40 ms
51,584 KB
testcase_28 AC 40 ms
51,840 KB
testcase_29 AC 39 ms
52,096 KB
testcase_30 AC 37 ms
51,840 KB
testcase_31 AC 39 ms
51,584 KB
testcase_32 AC 37 ms
52,096 KB
testcase_33 AC 40 ms
51,584 KB
testcase_34 AC 95 ms
107,904 KB
testcase_35 AC 58 ms
72,448 KB
testcase_36 AC 84 ms
102,144 KB
testcase_37 AC 80 ms
97,408 KB
testcase_38 AC 70 ms
82,944 KB
testcase_39 AC 59 ms
74,368 KB
testcase_40 AC 64 ms
78,464 KB
testcase_41 AC 54 ms
68,736 KB
testcase_42 AC 81 ms
93,824 KB
testcase_43 AC 88 ms
98,304 KB
testcase_44 AC 165 ms
115,328 KB
testcase_45 AC 169 ms
115,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

dp[i] = i回の操作で行ける最大値

"""


from sys import stdin
import sys

N,M,P = map(int,stdin.readline().split())
A = list(map(int,stdin.readline().split()))
B = []
cnt = [0] * N

for i in range(N):
    na = A[i]
    while na % P == 0:
        na //= P
        cnt[i] += 1
    B.append(na)

if max(B) == 1 and max(A) <= M:
    print (-1)
    sys.exit()

dp = [1] * 1001
for i in range(1000):
    
    nmax = dp[i]
    if nmax > M:
        print (i)
        break

    for j in range(N):
        if nmax * A[j] > M:
            print (i+1)
            sys.exit()
        else:
            dp[i+1+cnt[j]] = max(dp[i+1+cnt[j]] , dp[i]*B[j])
        
    
0