結果

問題 No.1330 Multiply or Divide
ユーザー convexineqconvexineq
提出日時 2021-01-09 20:14:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 117,056 KB
最終ジャッジ日時 2024-11-18 10:57:51
合計ジャッジ時間 5,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 94 ms
110,952 KB
testcase_02 WA -
testcase_03 AC 37 ms
53,036 KB
testcase_04 AC 44 ms
60,664 KB
testcase_05 AC 38 ms
51,940 KB
testcase_06 AC 701 ms
107,872 KB
testcase_07 WA -
testcase_08 AC 110 ms
116,772 KB
testcase_09 AC 111 ms
116,780 KB
testcase_10 AC 109 ms
117,056 KB
testcase_11 AC 106 ms
116,916 KB
testcase_12 AC 110 ms
116,772 KB
testcase_13 AC 39 ms
52,284 KB
testcase_14 AC 38 ms
52,888 KB
testcase_15 AC 38 ms
52,140 KB
testcase_16 AC 38 ms
52,436 KB
testcase_17 AC 37 ms
53,300 KB
testcase_18 AC 92 ms
113,844 KB
testcase_19 AC 95 ms
114,564 KB
testcase_20 AC 94 ms
113,140 KB
testcase_21 AC 94 ms
113,212 KB
testcase_22 AC 95 ms
114,464 KB
testcase_23 AC 99 ms
115,348 KB
testcase_24 AC 38 ms
52,204 KB
testcase_25 AC 38 ms
52,556 KB
testcase_26 AC 38 ms
52,396 KB
testcase_27 AC 38 ms
52,764 KB
testcase_28 AC 37 ms
52,216 KB
testcase_29 AC 38 ms
53,416 KB
testcase_30 AC 38 ms
52,488 KB
testcase_31 AC 38 ms
52,000 KB
testcase_32 AC 38 ms
52,728 KB
testcase_33 AC 38 ms
52,212 KB
testcase_34 AC 82 ms
101,440 KB
testcase_35 AC 54 ms
71,348 KB
testcase_36 AC 76 ms
96,620 KB
testcase_37 AC 74 ms
92,168 KB
testcase_38 AC 62 ms
79,644 KB
testcase_39 AC 54 ms
72,420 KB
testcase_40 AC 57 ms
76,300 KB
testcase_41 AC 50 ms
67,304 KB
testcase_42 AC 71 ms
89,864 KB
testcase_43 AC 74 ms
93,552 KB
testcase_44 AC 119 ms
106,808 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p,*a = map(int,open(0).read().split())
t = [1]*n
for i in range(n):
    while a[i]%p==0:
        a[i] //= p
        t[i] += 1
m = m//max(a)+1
dp = [1]*1050
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