結果

問題 No.1929 Exponential Sequence
ユーザー 👑 rin204rin204
提出日時 2022-05-06 21:51:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 190,464 KB
最終ジャッジ日時 2024-09-14 03:51:54
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 278 ms
190,464 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 48 ms
60,416 KB
testcase_16 AC 40 ms
52,736 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 39 ms
52,480 KB
testcase_20 AC 38 ms
52,480 KB
testcase_21 AC 265 ms
190,080 KB
testcase_22 AC 198 ms
143,360 KB
testcase_23 AC 264 ms
190,208 KB
testcase_24 AC 150 ms
119,040 KB
testcase_25 AC 257 ms
179,456 KB
testcase_26 AC 267 ms
190,464 KB
testcase_27 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if n == 1:
    a = A[0]
    x = a
    ans = 0
    while x <= S:
        ans += 1
        x *= a
    print(ans)
    exit()
L = A[:n//2]
R = A[n//2:]

left = [0]
for a in L:
    tmp = []
    x = a
    while x < S:
        tmp.append(x)
        x *= a
    nl = []
    for t in tmp:
        for l in left:
            if t + l <= S:
                nl.append(t + l)
    left = nl
left.sort()

right = [0]
for a in R:
    tmp = []
    x = a
    while x < S:
        tmp.append(x)
        x *= a
    nr = []
    for t in tmp:
        for l in right:
            if t + l <= S:
                nr.append(t + l)
    right = nr
right.sort()

ans = 0
p = 0
left.append(S + 1)
for r in right[::-1]:
    while r + left[p] <= S:
        p += 1
    ans += p
print(ans)
0