結果

問題 No.1929 Exponential Sequence
ユーザー Akijin_007Akijin_007
提出日時 2022-05-06 22:17:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,220 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 84,932 KB
最終ジャッジ日時 2024-09-14 03:53:08
合計ジャッジ時間 3,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 156 ms
84,932 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 40 ms
52,260 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 41 ms
52,736 KB
testcase_10 AC 41 ms
52,608 KB
testcase_11 AC 41 ms
52,736 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 40 ms
52,480 KB
testcase_14 AC 41 ms
52,352 KB
testcase_15 AC 62 ms
68,224 KB
testcase_16 AC 47 ms
59,392 KB
testcase_17 AC 41 ms
52,352 KB
testcase_18 AC 40 ms
52,736 KB
testcase_19 AC 40 ms
52,864 KB
testcase_20 AC 41 ms
52,864 KB
testcase_21 AC 158 ms
84,900 KB
testcase_22 AC 122 ms
81,840 KB
testcase_23 AC 157 ms
84,832 KB
testcase_24 AC 105 ms
78,992 KB
testcase_25 AC 157 ms
84,892 KB
testcase_26 AC 157 ms
84,864 KB
testcase_27 AC 40 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

n, S = map(int, input().split())
A = list(map(int, input().split()))

B = A[n//2:]
A = A[:n//2]

d = dict()
d[0] = 1

for i in range(len(A)):
    t = 1
    a = A[i]
    nd = dict()
    while True:
        t *= a
        if t > S:
            break
        for x, v in d.items():
            if x + t > S:
                continue
            elif x + t not in nd:
                nd[x+t] = v
            else:
                nd[x+t] += v
    d = dict(nd)

da = dict(d)

d = dict()
d[0] = 1

for i in range(len(B)):
    t = 1
    a = B[i]
    nd = dict()
    while True:
        t *= a
        if t > S:
            break
        for x, v in d.items():
            if x + t > S:
                continue
            elif x + t not in nd:
                nd[x+t] = v
            else:
                nd[x+t] += v
    d = dict(nd)

b = list(d.items())
b = sorted(b)

s = [0] * (len(b) + 1)
lb = []
for i in range(len(b)):
    s[i+1] = s[i] + b[i][1]
    lb.append(b[i][0])

# print(da)
# print(d)

import bisect

ans = 0
# print(lb)

for x, v in da.items():
    t = bisect.bisect_right(lb, S-x)
    # print(t, S-x)
    ans += s[t] * v

print(ans)
0