結果

問題 No.1693 Invasion
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-10 17:01:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,101 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,592 KB
最終ジャッジ日時 2024-09-14 12:24:19
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,384 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 35 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 38 ms
10,752 KB
testcase_06 AC 37 ms
10,880 KB
testcase_07 AC 38 ms
10,752 KB
testcase_08 AC 36 ms
11,008 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

class Combinatorics:
	def __init__(self, n: int) -> None:
		self.n = n
		self.fa = [1] * (self.n * 2 + 1)
		self.fi = [1] * (self.n * 2 + 1)

		for i in range(1, self.n * 2 + 1):
			self.fa[i] = self.fa[i - 1] * i % mod

		self.fi[-1] = pow(self.fa[-1], mod - 2, mod)

		for i in range(self.n * 2, 0, -1):
			self.fi[i - 1] = self.fi[i] * i % mod

	def comb(self, n: int, r: int) -> int:
		if n < r:return 0
		if n < 0 or r < 0:return 0
		return self.fa[n] * self.fi[r] % mod * self.fi[n - r] % mod

	def perm(self, n: int, r: int) -> int:
		if n < r:return 0
		if n < 0 or r < 0:return 0
		return self.fa[n] * self.fi[n - r] % mod
		
	def combr(self, n: int, r: int) -> int:
		if n == r == 0:return 1
		return self.comb(n + r - 1, r)
INF = 10 ** 18
n, m = map(int, input().split())
a = list(map(int, input().split()))
dp = [INF] * (m + 1)
dp[0] = 0
for i in range(m):
	for j in range(n):
		if i + a[j] <= m:
			dp[i + a[j]] = min(dp[i + a[j]], dp[i] + 1)
C = Combinatorics(m)
ans = 0
for i in range(m + 1):
	if dp[i] != INF: ans += C.comb(m - dp[i], i - dp[i]); ans %= mod
print(ans)
0