結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-23 12:26:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 82,492 KB
最終ジャッジ日時 2024-07-01 12:26:15
合計ジャッジ時間 2,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,156 KB
testcase_01 AC 39 ms
53,368 KB
testcase_02 AC 38 ms
53,416 KB
testcase_03 AC 38 ms
52,728 KB
testcase_04 AC 77 ms
67,844 KB
testcase_05 AC 38 ms
52,432 KB
testcase_06 AC 46 ms
60,984 KB
testcase_07 AC 46 ms
60,688 KB
testcase_08 AC 39 ms
53,116 KB
testcase_09 AC 41 ms
57,864 KB
testcase_10 AC 51 ms
69,692 KB
testcase_11 AC 51 ms
68,516 KB
testcase_12 AC 99 ms
73,572 KB
testcase_13 AC 46 ms
61,120 KB
testcase_14 AC 59 ms
65,736 KB
testcase_15 AC 63 ms
66,052 KB
testcase_16 AC 67 ms
66,304 KB
testcase_17 AC 88 ms
78,108 KB
testcase_18 AC 110 ms
82,492 KB
testcase_19 AC 106 ms
81,212 KB
testcase_20 AC 52 ms
64,020 KB
testcase_21 AC 53 ms
63,488 KB
testcase_22 AC 40 ms
52,604 KB
testcase_23 AC 44 ms
60,364 KB
testcase_24 AC 45 ms
59,440 KB
testcase_25 AC 55 ms
67,684 KB
testcase_26 AC 52 ms
64,856 KB
testcase_27 AC 50 ms
63,220 KB
testcase_28 AC 77 ms
67,136 KB
testcase_29 AC 75 ms
67,932 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