結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー flippergoflippergo
提出日時 2024-09-24 11:47:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 83,204 KB
最終ジャッジ日時 2024-09-24 11:47:25
合計ジャッジ時間 3,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,620 KB
testcase_01 AC 37 ms
51,992 KB
testcase_02 AC 38 ms
52,320 KB
testcase_03 AC 36 ms
53,032 KB
testcase_04 AC 74 ms
69,044 KB
testcase_05 AC 36 ms
52,800 KB
testcase_06 AC 46 ms
62,936 KB
testcase_07 AC 48 ms
63,468 KB
testcase_08 AC 40 ms
57,740 KB
testcase_09 AC 41 ms
59,060 KB
testcase_10 AC 63 ms
70,348 KB
testcase_11 AC 64 ms
69,980 KB
testcase_12 AC 104 ms
74,764 KB
testcase_13 AC 48 ms
63,712 KB
testcase_14 AC 56 ms
64,544 KB
testcase_15 AC 62 ms
65,676 KB
testcase_16 AC 65 ms
68,388 KB
testcase_17 AC 91 ms
78,304 KB
testcase_18 AC 122 ms
83,204 KB
testcase_19 AC 116 ms
81,792 KB
testcase_20 AC 52 ms
65,756 KB
testcase_21 AC 53 ms
64,872 KB
testcase_22 AC 37 ms
52,616 KB
testcase_23 AC 43 ms
60,428 KB
testcase_24 AC 44 ms
60,824 KB
testcase_25 AC 64 ms
68,876 KB
testcase_26 AC 55 ms
65,796 KB
testcase_27 AC 51 ms
64,048 KB
testcase_28 AC 74 ms
67,976 KB
testcase_29 AC 73 ms
69,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,T = map(int,input().split())
MOD = 998244353
G = {i:[] for i in range(N)}
for _ in range(M):
    s,t = map(int,input().split())
    G[s].append(t)
    G[t].append(s)
dp = [[0 for _ in range(N)] for _ in range(T+1)]
dp[0][0] = 1
for t in range(1,T+1):
    for i in range(N):
        for j in G[i]:
            dp[t][i] = (dp[t][i]+dp[t-1][j])%MOD
print(dp[T][0])
0