結果

問題 No.1693 Invasion
ユーザー AEnAEn
提出日時 2022-05-26 00:28:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 1,065 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 233,088 KB
最終ジャッジ日時 2024-09-20 14:51:12
合計ジャッジ時間 7,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
60,416 KB
testcase_01 AC 126 ms
60,928 KB
testcase_02 AC 131 ms
61,056 KB
testcase_03 AC 140 ms
65,024 KB
testcase_04 AC 128 ms
60,544 KB
testcase_05 AC 142 ms
66,816 KB
testcase_06 AC 138 ms
65,024 KB
testcase_07 AC 139 ms
68,480 KB
testcase_08 AC 133 ms
66,304 KB
testcase_09 AC 391 ms
178,944 KB
testcase_10 AC 267 ms
124,160 KB
testcase_11 AC 187 ms
87,168 KB
testcase_12 AC 287 ms
134,912 KB
testcase_13 AC 218 ms
102,144 KB
testcase_14 AC 241 ms
111,744 KB
testcase_15 AC 204 ms
93,824 KB
testcase_16 AC 302 ms
135,680 KB
testcase_17 AC 122 ms
60,416 KB
testcase_18 AC 503 ms
233,088 KB
testcase_19 AC 145 ms
69,248 KB
testcase_20 AC 134 ms
64,640 KB
testcase_21 AC 504 ms
217,216 KB
testcase_22 AC 439 ms
217,984 KB
testcase_23 AC 512 ms
220,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Ncrs():
    def __init__(self, max_r, mod = 998244353) -> None:
        self.mod = mod
        self.fct, self.inv = [1] * (max_r+2), [1]* (max_r+2)
        for i in range(2, max_r+1):
            self.fct[i] = self.fct[i-1] * i % mod
            self.inv[max_r] = pow(self.fct[max_r], mod-2, mod)
        for i in range(max_r, 0,-1):
            self.inv[i-1] = self.inv[i] * i % mod
    def __call__(self, n, k) -> int:
        return self.nck(n, k)
    def nck(self, n, k) -> int:
        if k > n or n <0 or k <0:
            return 0
        return self.fct[n] * self.inv[k] % self.mod * self.inv[n-k] % self.mod

ncr = Ncrs(10**5)
dp = [[float('inf')]*(M+1) for _ in range(N+1)]
dp[0][0] = 0
for i in range(N):
    for j in range(M+1):
        if j < A[i]:
            dp[i+1][j] = min(dp[i+1][j], dp[i][j])
        else:
            dp[i+1][j] = min(dp[i][j], dp[i+1][j-A[i]]+1)
res = 1
for i in range(1, M+1):
    res += ncr(M-dp[-1][i], i-dp[-1][i])
    res %= 998244353
print(res)
0