結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-23 12:25:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-07-01 12:24:16
合計ジャッジ時間 8,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 712 ms
12,416 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 199 ms
18,560 KB
testcase_11 AC 210 ms
18,560 KB
testcase_12 AC 943 ms
33,792 KB
testcase_13 AC 34 ms
11,008 KB
testcase_14 AC 66 ms
10,880 KB
testcase_15 AC 180 ms
11,392 KB
testcase_16 AC 294 ms
12,032 KB
testcase_17 AC 765 ms
21,760 KB
testcase_18 AC 948 ms
39,040 KB
testcase_19 AC 755 ms
16,256 KB
testcase_20 AC 57 ms
11,520 KB
testcase_21 AC 51 ms
11,136 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 33 ms
10,752 KB
testcase_25 AC 182 ms
16,128 KB
testcase_26 AC 81 ms
12,672 KB
testcase_27 AC 56 ms
11,776 KB
testcase_28 AC 738 ms
12,416 KB
testcase_29 AC 689 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,T=map(int,input().split())
mod=998244353
g=[[] for _ in range(n)]
for _ in range(m):
    s,t=map(int,input().split())
    g[s].append(t)
    g[t].append(s)
dp=[[0]*n for _ in range(T+1)]
dp[0][0]=1
for i in range(1,T+1):
    for j in range(n):
        for to in g[j]:
            dp[i][j]+=dp[i-1][to]
            dp[i][j]%=mod
print(dp[T][0])
0