結果

問題 No.1330 Multiply or Divide
ユーザー rlangevinrlangevin
提出日時 2024-04-17 12:05:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-10-09 06:08:13
合計ジャッジ時間 5,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 81 ms
104,064 KB
testcase_02 AC 40 ms
52,400 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 45 ms
58,624 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 77 ms
98,944 KB
testcase_07 WA -
testcase_08 AC 105 ms
102,016 KB
testcase_09 AC 111 ms
102,016 KB
testcase_10 AC 105 ms
101,760 KB
testcase_11 AC 103 ms
101,884 KB
testcase_12 AC 104 ms
102,240 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 36 ms
51,968 KB
testcase_16 AC 37 ms
52,224 KB
testcase_17 AC 37 ms
52,608 KB
testcase_18 AC 96 ms
102,344 KB
testcase_19 AC 99 ms
102,024 KB
testcase_20 AC 95 ms
102,032 KB
testcase_21 AC 95 ms
102,128 KB
testcase_22 AC 98 ms
101,708 KB
testcase_23 AC 99 ms
102,272 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 37 ms
52,224 KB
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 37 ms
51,840 KB
testcase_29 AC 38 ms
52,480 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 36 ms
52,224 KB
testcase_32 AC 37 ms
51,968 KB
testcase_33 AC 36 ms
52,224 KB
testcase_34 AC 76 ms
97,408 KB
testcase_35 AC 50 ms
69,888 KB
testcase_36 AC 73 ms
93,312 KB
testcase_37 AC 69 ms
89,344 KB
testcase_38 AC 60 ms
78,336 KB
testcase_39 AC 54 ms
71,680 KB
testcase_40 AC 55 ms
74,368 KB
testcase_41 AC 48 ms
66,688 KB
testcase_42 AC 71 ms
86,656 KB
testcase_43 AC 70 ms
89,728 KB
testcase_44 AC 81 ms
99,328 KB
testcase_45 AC 80 ms
99,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P = map(int, input().split())
A = list(map(int, input().split()))
ma = max(A)

K, K2 = 35, 70
D = [1] * K
for i in range(N):
    cnt = 0
    while A[i] % P == 0:
        cnt += 1
        A[i] //= P
    D[cnt] = max(D[cnt], A[i])

inf = 10 ** 18
dp = [-inf] * K2
dp[0] = 1
for i in range(K2):
    if dp[i] * ma > M:
        print(i + 1)
        exit()
        
    for j in range(K):
        if i + j + 1 >= K2:
            break
        dp[i + j + 1] = max(dp[i + j + 1], dp[i] * D[j])
        
print(-1)
0