結果

問題 No.1330 Multiply or Divide
ユーザー ayaoniayaoni
提出日時 2021-01-14 02:53:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,297 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 121,432 KB
最終ジャッジ日時 2024-11-23 01:54:29
合計ジャッジ時間 8,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 189 ms
107,324 KB
testcase_02 AC 37 ms
54,372 KB
testcase_03 AC 39 ms
52,996 KB
testcase_04 AC 37 ms
53,232 KB
testcase_05 AC 36 ms
53,208 KB
testcase_06 AC 174 ms
116,276 KB
testcase_07 AC 186 ms
107,172 KB
testcase_08 AC 753 ms
120,592 KB
testcase_09 AC 763 ms
121,088 KB
testcase_10 AC 746 ms
120,848 KB
testcase_11 AC 743 ms
120,964 KB
testcase_12 AC 736 ms
120,848 KB
testcase_13 AC 38 ms
53,384 KB
testcase_14 AC 41 ms
53,424 KB
testcase_15 AC 37 ms
53,788 KB
testcase_16 AC 38 ms
54,676 KB
testcase_17 AC 37 ms
53,944 KB
testcase_18 AC 87 ms
102,220 KB
testcase_19 AC 87 ms
102,112 KB
testcase_20 AC 87 ms
102,272 KB
testcase_21 AC 87 ms
101,728 KB
testcase_22 AC 91 ms
102,084 KB
testcase_23 AC 189 ms
121,432 KB
testcase_24 AC 37 ms
54,004 KB
testcase_25 AC 36 ms
53,352 KB
testcase_26 AC 36 ms
52,816 KB
testcase_27 AC 36 ms
52,816 KB
testcase_28 AC 38 ms
53,088 KB
testcase_29 AC 38 ms
53,076 KB
testcase_30 AC 38 ms
52,948 KB
testcase_31 AC 37 ms
52,860 KB
testcase_32 AC 37 ms
53,316 KB
testcase_33 AC 37 ms
53,484 KB
testcase_34 AC 74 ms
98,340 KB
testcase_35 AC 48 ms
68,928 KB
testcase_36 AC 73 ms
92,376 KB
testcase_37 AC 70 ms
89,504 KB
testcase_38 AC 60 ms
78,536 KB
testcase_39 AC 52 ms
72,756 KB
testcase_40 AC 53 ms
73,416 KB
testcase_41 AC 46 ms
67,900 KB
testcase_42 AC 64 ms
86,572 KB
testcase_43 AC 69 ms
90,412 KB
testcase_44 AC 174 ms
116,360 KB
testcase_45 AC 173 ms
116,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M,P = MI()
A = LI()

max_A = max(A)
# 最後の1回の操作はmax_Aを掛ける
X = M//max_A+1  # 目標値

if X == 1:
    print(1)
    exit()

B = []
for a in A:
    r = 0
    while a % P == 0:
        r += 1
        a //= P
    B.append((r+1,-a))  # (操作回数,-(結局何倍になるか))

B = sorted(B,key=itemgetter(0,1))
C = []
r,a = B[0]
a *= -1
C.append((r,a))

for i in range(1,N):
    r,a = B[i]
    a *= -1
    if B[-1][0] < r and B[-1][1] < a:
        C.append((r,a))

for r,a in C:
    if a != 1:
        break
else:
    print(-1)
    exit()

dp = [1]*10000  # dp[i] = i回の操作でできる最大値
for i in range(1,10000):
    for r,a in C:
        if i >= r:
            dp[i] = max(dp[i],dp[i-r]*a)
    if dp[i] >= X:
        print(i+1)  # 最後の1回の操作を追加
        break
0