結果

問題 No.1330 Multiply or Divide
ユーザー ayaoniayaoni
提出日時 2021-01-14 02:56:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 706 ms / 2,000 ms
コード長 1,297 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 121,148 KB
最終ジャッジ日時 2024-11-23 02:02:34
合計ジャッジ時間 8,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
52,480 KB
testcase_01 AC 179 ms
107,264 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 36 ms
52,736 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 36 ms
52,736 KB
testcase_06 AC 163 ms
116,816 KB
testcase_07 AC 183 ms
106,996 KB
testcase_08 AC 693 ms
120,516 KB
testcase_09 AC 693 ms
120,520 KB
testcase_10 AC 706 ms
121,148 KB
testcase_11 AC 691 ms
120,684 KB
testcase_12 AC 684 ms
120,648 KB
testcase_13 AC 36 ms
52,992 KB
testcase_14 AC 37 ms
52,864 KB
testcase_15 AC 35 ms
52,736 KB
testcase_16 AC 34 ms
52,736 KB
testcase_17 AC 34 ms
52,096 KB
testcase_18 AC 83 ms
101,888 KB
testcase_19 AC 86 ms
101,748 KB
testcase_20 AC 84 ms
101,888 KB
testcase_21 AC 82 ms
102,144 KB
testcase_22 AC 83 ms
101,724 KB
testcase_23 AC 181 ms
120,952 KB
testcase_24 AC 35 ms
51,968 KB
testcase_25 AC 35 ms
52,608 KB
testcase_26 AC 35 ms
52,096 KB
testcase_27 AC 34 ms
52,352 KB
testcase_28 AC 35 ms
52,480 KB
testcase_29 AC 35 ms
52,224 KB
testcase_30 AC 34 ms
52,608 KB
testcase_31 AC 35 ms
52,608 KB
testcase_32 AC 34 ms
52,224 KB
testcase_33 AC 36 ms
52,096 KB
testcase_34 AC 68 ms
96,256 KB
testcase_35 AC 45 ms
68,992 KB
testcase_36 AC 64 ms
92,416 KB
testcase_37 AC 60 ms
88,704 KB
testcase_38 AC 52 ms
76,800 KB
testcase_39 AC 47 ms
70,784 KB
testcase_40 AC 49 ms
73,472 KB
testcase_41 AC 44 ms
66,176 KB
testcase_42 AC 60 ms
85,888 KB
testcase_43 AC 62 ms
89,216 KB
testcase_44 AC 159 ms
116,096 KB
testcase_45 AC 167 ms
116,224 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 C[-1][0] < r and C[-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