結果

問題 No.1693 Invasion
ユーザー googol_S0googol_S0
提出日時 2021-10-01 21:26:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-07-19 10:29:57
合計ジャッジ時間 3,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
66,176 KB
testcase_01 AC 54 ms
66,176 KB
testcase_02 AC 54 ms
66,304 KB
testcase_03 AC 60 ms
68,096 KB
testcase_04 AC 52 ms
66,048 KB
testcase_05 AC 57 ms
68,096 KB
testcase_06 AC 57 ms
68,096 KB
testcase_07 AC 60 ms
69,376 KB
testcase_08 AC 61 ms
69,120 KB
testcase_09 AC 112 ms
74,112 KB
testcase_10 AC 77 ms
73,600 KB
testcase_11 AC 70 ms
72,576 KB
testcase_12 AC 89 ms
74,624 KB
testcase_13 AC 76 ms
72,064 KB
testcase_14 AC 78 ms
72,448 KB
testcase_15 AC 77 ms
72,064 KB
testcase_16 AC 97 ms
73,088 KB
testcase_17 AC 51 ms
66,048 KB
testcase_18 AC 133 ms
75,008 KB
testcase_19 AC 54 ms
67,072 KB
testcase_20 AC 57 ms
68,096 KB
testcase_21 AC 139 ms
75,520 KB
testcase_22 AC 158 ms
76,544 KB
testcase_23 AC 146 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
def cmb(n,r):
  if r<0 or r>n:
    return 0
  return ((g1[n]*g2[r]%mod)*g2[n-r])%mod

N=300000
g1=[1]*(N+3)
for i in range(2,N+3):
  g1[i]=g1[i-1]*i%mod
g2=[0]*len(g1)
g2[-1]=pow(g1[-1],mod-2,mod)
for i in range(N+1,-1,-1):
  g2[i]=g2[i+1]*(i+1)%mod
inv=[0]*(N+3)
for i in range(1,N+3):
  inv[i]=g2[i]*g1[i-1]%mod

N,M=map(int,input().split())
A=list(map(int,input().split()))
DP=[M+1]*(M+1)
DP[0]=0
ANS=0
for i in range(M+1):
  if DP[i]>M:
    continue
  ANS=(ANS+cmb(M-DP[i],i-DP[i]))%mod
  for j in range(N):
    if i+A[j]>M:
      continue
    DP[i+A[j]]=min(DP[i+A[j]],DP[i]+1)
print(ANS)
0