結果

問題 No.1330 Multiply or Divide
ユーザー Kite_kumaKite_kuma
提出日時 2021-01-08 21:42:59
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 576 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 131,584 KB
最終ジャッジ日時 2024-11-16 19:18:00
合計ジャッジ時間 6,061 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,864 KB
testcase_01 AC 122 ms
107,136 KB
testcase_02 WA -
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
53,120 KB
testcase_06 AC 94 ms
126,208 KB
testcase_07 AC 328 ms
107,008 KB
testcase_08 AC 132 ms
127,040 KB
testcase_09 AC 133 ms
126,792 KB
testcase_10 AC 132 ms
127,180 KB
testcase_11 AC 130 ms
126,784 KB
testcase_12 AC 131 ms
126,860 KB
testcase_13 AC 39 ms
53,120 KB
testcase_14 AC 38 ms
53,248 KB
testcase_15 AC 40 ms
52,864 KB
testcase_16 AC 39 ms
52,608 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 120 ms
126,532 KB
testcase_19 AC 118 ms
126,664 KB
testcase_20 AC 118 ms
126,800 KB
testcase_21 AC 118 ms
126,584 KB
testcase_22 AC 119 ms
126,400 KB
testcase_23 AC 124 ms
126,928 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 39 ms
53,120 KB
testcase_26 AC 38 ms
53,120 KB
testcase_27 AC 38 ms
52,736 KB
testcase_28 AC 38 ms
52,736 KB
testcase_29 AC 37 ms
52,736 KB
testcase_30 AC 38 ms
52,608 KB
testcase_31 AC 38 ms
52,992 KB
testcase_32 AC 39 ms
52,480 KB
testcase_33 AC 38 ms
53,120 KB
testcase_34 AC 96 ms
120,472 KB
testcase_35 AC 56 ms
76,544 KB
testcase_36 AC 89 ms
113,920 KB
testcase_37 AC 84 ms
107,648 KB
testcase_38 AC 67 ms
89,980 KB
testcase_39 AC 59 ms
79,104 KB
testcase_40 AC 66 ms
83,640 KB
testcase_41 AC 55 ms
71,552 KB
testcase_42 AC 80 ms
103,296 KB
testcase_43 AC 85 ms
108,928 KB
testcase_44 AC 168 ms
131,584 KB
testcase_45 AC 193 ms
131,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p = map(int, input().split())
a = list(map(int, input().split()))
d = list()
cnt = list()
flag = True
for c in a:
    tmp = 0
    while c % p == 0:
        c //= p
        tmp += 1
    if c > 1:
        flag = False
    d.append(c)
    cnt.append(tmp)
if flag:
    print(-1)
    exit()

dp = [1] * (100000)


for i in range(100000):
    now = dp[i]
    if now > m:
        print(i)
        exit()
    for j in range(n):
        c = a[j]
        if now * c > m:
            print(i + 1)
            exit()
        dp[i + cnt[j] + 1] = max(dp[i + cnt[j] + 1], now * d[j])
0