結果

問題 No.1330 Multiply or Divide
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-08 21:40:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,960 KB
最終ジャッジ日時 2024-11-16 10:50:09
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 107 ms
120,960 KB
testcase_02 WA -
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 94 ms
113,536 KB
testcase_07 AC 317 ms
120,320 KB
testcase_08 AC 124 ms
114,632 KB
testcase_09 AC 137 ms
114,244 KB
testcase_10 AC 130 ms
114,120 KB
testcase_11 AC 125 ms
114,492 KB
testcase_12 AC 128 ms
114,252 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 113 ms
113,860 KB
testcase_19 AC 112 ms
114,132 KB
testcase_20 AC 116 ms
113,864 KB
testcase_21 AC 123 ms
113,988 KB
testcase_22 AC 124 ms
114,232 KB
testcase_23 WA -
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 WA -
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 37 ms
51,584 KB
testcase_29 AC 39 ms
51,712 KB
testcase_30 AC 40 ms
51,712 KB
testcase_31 AC 40 ms
51,968 KB
testcase_32 AC 43 ms
52,224 KB
testcase_33 AC 40 ms
51,840 KB
testcase_34 AC 98 ms
107,904 KB
testcase_35 AC 61 ms
72,576 KB
testcase_36 AC 90 ms
102,912 KB
testcase_37 AC 85 ms
97,920 KB
testcase_38 AC 71 ms
82,944 KB
testcase_39 AC 63 ms
74,624 KB
testcase_40 AC 67 ms
78,592 KB
testcase_41 AC 57 ms
68,608 KB
testcase_42 AC 84 ms
94,080 KB
testcase_43 AC 91 ms
98,432 KB
testcase_44 AC 168 ms
115,584 KB
testcase_45 AC 176 ms
116,096 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