結果

問題 No.1693 Invasion
ユーザー rlangevinrlangevin
提出日時 2023-10-07 01:13:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 78,740 KB
最終ジャッジ日時 2024-07-26 17:39:03
合計ジャッジ時間 3,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,320 KB
testcase_01 AC 47 ms
62,728 KB
testcase_02 AC 46 ms
62,612 KB
testcase_03 AC 53 ms
63,948 KB
testcase_04 AC 46 ms
63,460 KB
testcase_05 AC 53 ms
65,072 KB
testcase_06 AC 50 ms
64,956 KB
testcase_07 AC 53 ms
65,676 KB
testcase_08 AC 51 ms
65,360 KB
testcase_09 AC 130 ms
76,204 KB
testcase_10 AC 81 ms
75,940 KB
testcase_11 AC 72 ms
72,804 KB
testcase_12 AC 89 ms
78,740 KB
testcase_13 AC 70 ms
71,944 KB
testcase_14 AC 84 ms
72,416 KB
testcase_15 AC 77 ms
71,788 KB
testcase_16 AC 106 ms
73,624 KB
testcase_17 AC 46 ms
62,440 KB
testcase_18 AC 158 ms
78,724 KB
testcase_19 AC 47 ms
64,216 KB
testcase_20 AC 50 ms
64,556 KB
testcase_21 AC 168 ms
78,408 KB
testcase_22 AC 134 ms
78,692 KB
testcase_23 AC 178 ms
78,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))

mod = 998244353
n = 10**5+5
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod


dist = [-1] * (M + 1)
from collections import *
Q = deque()
Q.append(0)
dist[0] = 0
while Q:
    u = Q.popleft()
    for a in A:
        v = u + a
        if v > M:
            continue
        if dist[v] <= dist[u] + 1 and dist[v] != -1:
            continue
        dist[v] = dist[u] + 1
        Q.append(v)
        
ans = 0
for i in range(M + 1):
    if dist[i] == -1:
        continue
    ans += comb(M - dist[i], i - dist[i])
    ans %= mod
    
print(ans)
0