結果

問題 No.1330 Multiply or Divide
ユーザー AEnAEn
提出日時 2023-01-11 23:11:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 107,028 KB
最終ジャッジ日時 2024-12-22 16:45:36
合計ジャッジ時間 6,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,624 KB
testcase_01 AC 98 ms
107,028 KB
testcase_02 WA -
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 79 ms
97,280 KB
testcase_07 WA -
testcase_08 AC 127 ms
101,860 KB
testcase_09 AC 131 ms
102,120 KB
testcase_10 AC 129 ms
102,136 KB
testcase_11 AC 127 ms
101,984 KB
testcase_12 AC 127 ms
102,272 KB
testcase_13 AC 53 ms
60,416 KB
testcase_14 AC 45 ms
59,520 KB
testcase_15 AC 45 ms
58,880 KB
testcase_16 AC 45 ms
58,624 KB
testcase_17 AC 44 ms
58,496 KB
testcase_18 AC 98 ms
101,996 KB
testcase_19 AC 98 ms
101,888 KB
testcase_20 AC 100 ms
101,632 KB
testcase_21 AC 99 ms
101,760 KB
testcase_22 AC 98 ms
102,016 KB
testcase_23 AC 111 ms
100,992 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 44 ms
58,880 KB
testcase_27 AC 41 ms
52,608 KB
testcase_28 AC 42 ms
51,968 KB
testcase_29 AC 41 ms
52,224 KB
testcase_30 AC 40 ms
51,840 KB
testcase_31 AC 40 ms
52,224 KB
testcase_32 AC 41 ms
51,456 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 78 ms
96,384 KB
testcase_35 AC 52 ms
68,992 KB
testcase_36 AC 73 ms
91,264 KB
testcase_37 AC 70 ms
87,680 KB
testcase_38 AC 62 ms
76,544 KB
testcase_39 AC 54 ms
70,144 KB
testcase_40 AC 56 ms
73,088 KB
testcase_41 AC 48 ms
65,536 KB
testcase_42 AC 69 ms
85,632 KB
testcase_43 AC 73 ms
89,088 KB
testcase_44 AC 85 ms
98,048 KB
testcase_45 AC 85 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