結果

問題 No.1693 Invasion
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-01 23:52:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 93,036 KB
最終ジャッジ日時 2024-07-19 17:09:25
合計ジャッジ時間 3,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
74,368 KB
testcase_01 AC 63 ms
74,752 KB
testcase_02 AC 64 ms
74,880 KB
testcase_03 AC 65 ms
76,672 KB
testcase_04 AC 61 ms
74,240 KB
testcase_05 AC 69 ms
78,848 KB
testcase_06 AC 69 ms
78,080 KB
testcase_07 AC 71 ms
78,336 KB
testcase_08 AC 68 ms
78,464 KB
testcase_09 AC 106 ms
88,960 KB
testcase_10 AC 97 ms
89,984 KB
testcase_11 AC 84 ms
86,016 KB
testcase_12 AC 103 ms
93,036 KB
testcase_13 AC 83 ms
84,480 KB
testcase_14 AC 89 ms
85,760 KB
testcase_15 AC 85 ms
83,328 KB
testcase_16 AC 95 ms
86,656 KB
testcase_17 AC 63 ms
74,112 KB
testcase_18 AC 126 ms
92,544 KB
testcase_19 AC 77 ms
82,688 KB
testcase_20 AC 70 ms
76,928 KB
testcase_21 AC 125 ms
92,544 KB
testcase_22 AC 122 ms
92,288 KB
testcase_23 AC 127 ms
92,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

dp[v] = v個置くときの、回数の最小

"""

import sys
from sys import stdin

def modfac(n, MOD):
 
    f = 1
    factorials = [1]
    for m in range(1, n + 1):
        f *= m
        f %= MOD
        factorials.append(f)
    inv = pow(f, MOD - 2, MOD)
    invs = [1] * (n + 1)
    invs[n] = inv
    for m in range(n, 1, -1):
        inv *= m
        inv %= MOD
        invs[m - 1] = inv
    return factorials, invs


def modnCr(n,r):

    return fac[n] * inv[n-r] * inv[r] % mod


N,M = map(int,stdin.readline().split())

A = list(map(int,stdin.readline().split()))

mod = 998244353
fac,inv = modfac(2*10**5,mod)

dp = [float("inf")] * (M+1)

A.sort()
A.reverse()

dp[0] = 0

for na in A:
    for i in range(0,M+1-na):

        dp[i+na] = min(dp[i+na] , dp[i] + 1)

ans = 0
for i in range(M+1):

    if dp[i] != float("inf"):

        peace = i - dp[i]
        emp = M - dp[i]
        now = modnCr(emp,peace)

        ans += now

        #print (i,now)

print (ans % mod)
0