結果

問題 No.1693 Invasion
ユーザー hydruhydru
提出日時 2021-10-01 21:57:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 144,128 KB
最終ジャッジ日時 2024-07-19 11:11:39
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,856 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 75 ms
68,992 KB
testcase_03 AC 62 ms
64,768 KB
testcase_04 AC 46 ms
57,856 KB
testcase_05 AC 105 ms
76,672 KB
testcase_06 AC 104 ms
76,800 KB
testcase_07 AC 148 ms
77,824 KB
testcase_08 AC 103 ms
76,416 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 #

from math import factorial

def comb(n,r):
    return factorial(n) // (factorial(n - r) * factorial(r))


n,m=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
inf=10**8+1
mod=998244353
DP=[inf]*(m+1)
DP[0]=0
for j in range(0,m):
    for i in range(n):
        if j+A[i]<=m:
            DP[j+A[i]]=min(DP[j+A[i]],DP[j]+1)
        else:
            break
ans=0
for i in range(m+1):
    if DP[i]==inf:
        continue
    ans=(ans+comb(m-DP[i],i-DP[i]))%mod
print(ans)
0