結果

問題 No.1693 Invasion
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-10-10 17:01:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,101 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2024-09-14 12:24:22
合計ジャッジ時間 3,037 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 47 ms
59,776 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 49 ms
60,032 KB
testcase_06 AC 50 ms
59,520 KB
testcase_07 AC 52 ms
60,928 KB
testcase_08 AC 49 ms
60,160 KB
testcase_09 AC 126 ms
70,912 KB
testcase_10 AC 95 ms
73,216 KB
testcase_11 AC 71 ms
68,480 KB
testcase_12 AC 104 ms
72,832 KB
testcase_13 AC 80 ms
67,200 KB
testcase_14 AC 84 ms
68,084 KB
testcase_15 AC 73 ms
65,920 KB
testcase_16 AC 98 ms
67,968 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 153 ms
73,344 KB
testcase_19 AC 62 ms
68,480 KB
testcase_20 AC 49 ms
59,136 KB
testcase_21 AC 147 ms
73,216 KB
testcase_22 AC 148 ms
73,728 KB
testcase_23 AC 148 ms
73,088 KB
権限があれば一括ダウンロードができます

ソースコード

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