結果

問題 No.1693 Invasion
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-03 13:28:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 92,288 KB
最終ジャッジ日時 2024-07-21 07:28:25
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
91,112 KB
testcase_01 AC 73 ms
90,880 KB
testcase_02 AC 74 ms
90,752 KB
testcase_03 AC 78 ms
90,992 KB
testcase_04 AC 73 ms
91,008 KB
testcase_05 AC 77 ms
90,752 KB
testcase_06 AC 78 ms
90,960 KB
testcase_07 AC 80 ms
90,624 KB
testcase_08 AC 80 ms
90,880 KB
testcase_09 AC 135 ms
91,816 KB
testcase_10 AC 110 ms
92,160 KB
testcase_11 AC 100 ms
91,648 KB
testcase_12 AC 125 ms
92,288 KB
testcase_13 AC 105 ms
91,568 KB
testcase_14 AC 105 ms
91,776 KB
testcase_15 AC 98 ms
91,392 KB
testcase_16 AC 123 ms
91,776 KB
testcase_17 AC 75 ms
90,752 KB
testcase_18 AC 156 ms
92,148 KB
testcase_19 AC 82 ms
91,520 KB
testcase_20 AC 76 ms
90,880 KB
testcase_21 AC 156 ms
92,264 KB
testcase_22 AC 163 ms
91,776 KB
testcase_23 AC 159 ms
92,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 10**6
mod = 998244353
fac = [1]*(N+1)
finv = [1]*(N+1)
for i in range(N):
    fac[i+1] = fac[i] * (i+1) % mod
finv[-1] = pow(fac[-1], mod-2, mod)
for i in reversed(range(N)):
    finv[i] = finv[i+1] * (i+1) % mod

def cmb1(n, r, mod):
    if r <0 or r > n:
        return 0
    r = min(r, n-r)
    return fac[n] * finv[r] * finv[n-r] % mod

n, m = map(int, input().split())
A = list(map(int, input().split()))
INF = 10**18
dp = [INF]*(m+1)
# dp[i]: iをAの要素の重複を許す和で表すときの使う要素の最小値
dp[0] = 0
for i in range(m+1):
    for a in A:
        if i+a <= m:
            dp[i+a] = min(dp[i+a], dp[i]+1)
#print(dp)
ans = 0
for k in range(m+1):
    if dp[k] == INF:
        continue
    ans += cmb1(m-dp[k], k-dp[k], mod)
    ans %= mod
print(ans)
0