結果

問題 No.1929 Exponential Sequence
ユーザー tassei903tassei903
提出日時 2022-05-06 22:37:09
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,211 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 717,208 KB
最終ジャッジ日時 2024-07-05 23:58:45
合計ジャッジ時間 4,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,320 KB
testcase_01 AC 47 ms
55,800 KB
testcase_02 AC 52 ms
65,840 KB
testcase_03 AC 67 ms
72,868 KB
testcase_04 AC 61 ms
70,940 KB
testcase_05 AC 42 ms
56,032 KB
testcase_06 AC 43 ms
55,756 KB
testcase_07 AC 53 ms
65,132 KB
testcase_08 AC 44 ms
56,564 KB
testcase_09 AC 44 ms
57,516 KB
testcase_10 AC 42 ms
55,980 KB
testcase_11 AC 44 ms
55,880 KB
testcase_12 AC 43 ms
55,824 KB
testcase_13 AC 42 ms
56,156 KB
testcase_14 AC 43 ms
56,168 KB
testcase_15 MLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


n,s = na()
a = na()
b = []
c = 0
for i in range(n):
    if a[i]!=2:
        b.append(a[i])
    else:
        c += 1
a = b
n = len(b)
kai = [1]
for i in range(8):
    kai.append(kai[-1]*(i+1))
def binom(r,x):
    return kai[r]//kai[x]//kai[r-x]
import functools
@functools.lru_cache(maxsize=None)
def saiki(s, c):
    r = 0
    if c == 0 and s >= 0:
        return 1
    if s < c:
        return 0
    if s == c:
        return 1
    for i in range(c+1):
        r += binom(c,i)*saiki((s-i)//2, c-i)
    return r
    

from collections import defaultdict

d = defaultdict(int)
d[0] = 1
for i in range(n):
    od = defaultdict(int)
    d,od = od,d
    for j in od:
        x = a[i]
        while j + x <= s:
            d[j + x]+=od[j]
            x *= a[i]
    #print(d)
    #print(len(d))
ans = 0
for i in d:
    ans += d[i] * saiki((s-i)//2,c)
print(ans)
0