結果

問題 No.1929 Exponential Sequence
ユーザー sotanishysotanishy
提出日時 2022-05-06 21:50:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,008 KB
最終ジャッジ日時 2024-09-14 03:51:35
合計ジャッジ時間 4,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,144 KB
testcase_01 AC 43 ms
53,836 KB
testcase_02 AC 44 ms
54,144 KB
testcase_03 AC 457 ms
112,008 KB
testcase_04 AC 43 ms
54,016 KB
testcase_05 AC 44 ms
53,632 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 45 ms
53,632 KB
testcase_08 AC 44 ms
53,760 KB
testcase_09 AC 44 ms
53,632 KB
testcase_10 AC 43 ms
53,888 KB
testcase_11 AC 44 ms
53,888 KB
testcase_12 AC 44 ms
53,888 KB
testcase_13 AC 43 ms
53,504 KB
testcase_14 AC 44 ms
53,888 KB
testcase_15 AC 64 ms
68,096 KB
testcase_16 AC 49 ms
60,800 KB
testcase_17 AC 44 ms
54,144 KB
testcase_18 AC 45 ms
53,888 KB
testcase_19 AC 44 ms
53,888 KB
testcase_20 AC 43 ms
53,504 KB
testcase_21 AC 386 ms
110,620 KB
testcase_22 AC 273 ms
97,716 KB
testcase_23 AC 380 ms
110,720 KB
testcase_24 AC 230 ms
89,344 KB
testcase_25 AC 383 ms
105,212 KB
testcase_26 AC 380 ms
111,680 KB
testcase_27 AC 44 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
from collections import defaultdict
import sys
input = sys.stdin.readline

n, S = map(int, input().split())
a = list(map(int, input().split()))
sums = []

def rec(i, s, m):
    if i == m:
        if s <= S:
            sums.append(s)
        return
    k = 1
    while s+a[i]**k <= S:
        rec(i+1, s+a[i]**k, m)
        k += 1

rec(0, 0, n//2)
sums.sort()
ans = 0

def rec2(i, s):
    global ans
    if i == n:
        if s <= S:
            ans += bisect_right(sums, S-s)
        return
    k = 1
    while s+a[i]**k <= S:
        rec2(i+1, s+a[i]**k)
        k += 1

rec2(n//2, 0)
print(ans)
0