結果

問題 No.1693 Invasion
ユーザー titiatitia
提出日時 2021-10-01 23:54:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,954 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,544 KB
最終ジャッジ日時 2024-07-19 17:13:00
合計ジャッジ時間 15,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
26,496 KB
testcase_01 AC 164 ms
26,368 KB
testcase_02 AC 169 ms
26,624 KB
testcase_03 AC 166 ms
26,368 KB
testcase_04 AC 163 ms
26,496 KB
testcase_05 AC 165 ms
26,368 KB
testcase_06 AC 168 ms
26,496 KB
testcase_07 AC 164 ms
26,752 KB
testcase_08 AC 166 ms
26,624 KB
testcase_09 AC 1,039 ms
27,648 KB
testcase_10 AC 410 ms
27,520 KB
testcase_11 AC 296 ms
26,880 KB
testcase_12 AC 649 ms
28,288 KB
testcase_13 AC 387 ms
27,008 KB
testcase_14 AC 441 ms
27,264 KB
testcase_15 AC 395 ms
26,752 KB
testcase_16 AC 814 ms
27,520 KB
testcase_17 AC 162 ms
26,496 KB
testcase_18 AC 1,485 ms
28,288 KB
testcase_19 AC 183 ms
27,264 KB
testcase_20 AC 165 ms
26,368 KB
testcase_21 AC 1,631 ms
28,288 KB
testcase_22 AC 1,832 ms
28,544 KB
testcase_23 AC 1,954 ms
28,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import deque

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

mod=998244353

DP=[-1]*(M+1)
DP[M]=0

Q=deque([(0,M)])

while Q:
    x,y=Q.popleft()

    for i in A[:y]:
        if y-i>=0 and DP[y-i]==-1:
            DP[y-i]=x+1
            Q.append((x+1,y-i))
            
FACT=[1]
for i in range(1,2*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

ANS=1
for i in range(M):
    x=DP[i]
    if x==-1:
        continue
    #print(M-x,i-x)
    ANS+=Combi(M-x,i)
    ANS%=mod

print(ANS)
    
0