結果

問題 No.1330 Multiply or Divide
ユーザー convexineqconvexineq
提出日時 2021-01-09 20:19:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 702 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 117,192 KB
最終ジャッジ日時 2024-11-18 11:00:39
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,164 KB
testcase_01 AC 94 ms
110,992 KB
testcase_02 AC 36 ms
52,740 KB
testcase_03 AC 37 ms
53,376 KB
testcase_04 AC 45 ms
60,872 KB
testcase_05 AC 38 ms
52,444 KB
testcase_06 AC 702 ms
108,760 KB
testcase_07 AC 236 ms
111,516 KB
testcase_08 AC 112 ms
116,816 KB
testcase_09 AC 115 ms
116,956 KB
testcase_10 AC 114 ms
116,904 KB
testcase_11 AC 112 ms
117,192 KB
testcase_12 AC 110 ms
117,008 KB
testcase_13 AC 39 ms
53,940 KB
testcase_14 AC 38 ms
52,744 KB
testcase_15 AC 37 ms
52,864 KB
testcase_16 AC 37 ms
52,256 KB
testcase_17 AC 38 ms
52,348 KB
testcase_18 AC 93 ms
113,336 KB
testcase_19 AC 95 ms
113,140 KB
testcase_20 AC 94 ms
113,304 KB
testcase_21 AC 94 ms
114,456 KB
testcase_22 AC 95 ms
114,672 KB
testcase_23 AC 98 ms
115,440 KB
testcase_24 AC 38 ms
52,192 KB
testcase_25 AC 38 ms
53,772 KB
testcase_26 AC 37 ms
53,060 KB
testcase_27 AC 40 ms
54,344 KB
testcase_28 AC 40 ms
52,476 KB
testcase_29 AC 40 ms
52,308 KB
testcase_30 AC 39 ms
52,408 KB
testcase_31 AC 38 ms
52,744 KB
testcase_32 AC 38 ms
51,948 KB
testcase_33 AC 38 ms
53,940 KB
testcase_34 AC 83 ms
100,836 KB
testcase_35 AC 52 ms
70,524 KB
testcase_36 AC 78 ms
97,252 KB
testcase_37 AC 73 ms
91,984 KB
testcase_38 AC 62 ms
80,376 KB
testcase_39 AC 55 ms
73,784 KB
testcase_40 AC 58 ms
75,960 KB
testcase_41 AC 50 ms
68,244 KB
testcase_42 AC 71 ms
90,072 KB
testcase_43 AC 76 ms
94,048 KB
testcase_44 AC 118 ms
108,068 KB
testcase_45 AC 124 ms
108,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p,*a = map(int,open(0).read().split())
t = [1]*n
m //= max(a)
for i in range(n):
    while a[i]%p==0:
        a[i] //= p
        t[i] += 1
dp = [1]*1024
for i in range(999):
    if dp[i] > m: break
    for ai,ti in zip(a,t):
        dp[i+ti] = max(dp[i+ti],dp[i]*ai)
else: i = -2
print(i+1)
0