結果

問題 No.1330 Multiply or Divide
ユーザー AEnAEn
提出日時 2023-01-11 23:12:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,176 KB
最終ジャッジ日時 2024-06-02 01:00:53
合計ジャッジ時間 4,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,752 KB
testcase_01 AC 89 ms
107,176 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 36 ms
52,736 KB
testcase_04 AC 35 ms
52,480 KB
testcase_05 AC 35 ms
52,736 KB
testcase_06 AC 71 ms
97,860 KB
testcase_07 WA -
testcase_08 AC 105 ms
102,244 KB
testcase_09 AC 113 ms
102,016 KB
testcase_10 AC 109 ms
102,400 KB
testcase_11 AC 109 ms
102,000 KB
testcase_12 AC 106 ms
101,888 KB
testcase_13 AC 41 ms
60,672 KB
testcase_14 AC 40 ms
59,008 KB
testcase_15 AC 39 ms
59,008 KB
testcase_16 AC 40 ms
59,048 KB
testcase_17 AC 39 ms
59,008 KB
testcase_18 AC 93 ms
102,364 KB
testcase_19 AC 92 ms
102,016 KB
testcase_20 AC 92 ms
102,016 KB
testcase_21 AC 91 ms
102,076 KB
testcase_22 AC 90 ms
101,888 KB
testcase_23 AC 97 ms
101,504 KB
testcase_24 AC 33 ms
52,480 KB
testcase_25 AC 34 ms
52,224 KB
testcase_26 AC 40 ms
58,752 KB
testcase_27 AC 34 ms
52,480 KB
testcase_28 AC 35 ms
52,224 KB
testcase_29 AC 36 ms
52,480 KB
testcase_30 AC 36 ms
51,968 KB
testcase_31 AC 36 ms
52,480 KB
testcase_32 AC 36 ms
52,392 KB
testcase_33 AC 36 ms
52,608 KB
testcase_34 AC 74 ms
96,256 KB
testcase_35 AC 46 ms
68,736 KB
testcase_36 AC 66 ms
91,904 KB
testcase_37 AC 64 ms
87,808 KB
testcase_38 AC 55 ms
76,928 KB
testcase_39 AC 48 ms
70,528 KB
testcase_40 AC 51 ms
73,344 KB
testcase_41 AC 44 ms
65,920 KB
testcase_42 AC 63 ms
85,248 KB
testcase_43 AC 69 ms
88,832 KB
testcase_44 AC 80 ms
98,816 KB
testcase_45 AC 78 ms
98,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil

N, M, P = map(int,input().split())
A = list(map(int, input().split()))
M += 1
m = max(A)
if m>=M:
    print(1)
    exit()
d = {}
for i in range(N):
    cnt = 1
    while A[i]%P==0:
        cnt += 1
        A[i] //= P
    if A[i]==1:
        continue
    if cnt in d:
        d[cnt] = max(d[cnt],A[i])
    else:
        d[cnt] = A[i]

if len(d)==0:
    print(-1)
    exit()
n = ceil(M/m)

dp = [0]*901
dp[0] = 1
for i in range(901):
    for key in d.keys():
        if i+key<=60:
            dp[i+key] = max(dp[i+key],dp[i]*d[key])
for i in range(901):
    if dp[i]>=n:
        print(i+1)
        exit()
0