結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー tnodinotnodino
提出日時 2023-07-09 18:15:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 82,888 KB
最終ジャッジ日時 2024-07-23 15:32:51
合計ジャッジ時間 3,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,692 KB
testcase_01 AC 39 ms
52,408 KB
testcase_02 AC 40 ms
52,476 KB
testcase_03 AC 38 ms
52,744 KB
testcase_04 AC 76 ms
68,452 KB
testcase_05 AC 38 ms
53,196 KB
testcase_06 AC 46 ms
61,192 KB
testcase_07 AC 47 ms
61,356 KB
testcase_08 AC 38 ms
53,280 KB
testcase_09 AC 42 ms
58,152 KB
testcase_10 AC 52 ms
69,868 KB
testcase_11 AC 52 ms
68,556 KB
testcase_12 AC 100 ms
73,996 KB
testcase_13 AC 45 ms
61,260 KB
testcase_14 AC 61 ms
65,080 KB
testcase_15 AC 63 ms
67,332 KB
testcase_16 AC 67 ms
67,832 KB
testcase_17 AC 88 ms
78,776 KB
testcase_18 AC 111 ms
82,888 KB
testcase_19 AC 107 ms
81,608 KB
testcase_20 AC 52 ms
63,752 KB
testcase_21 AC 52 ms
64,032 KB
testcase_22 AC 39 ms
52,948 KB
testcase_23 AC 43 ms
59,360 KB
testcase_24 AC 45 ms
60,468 KB
testcase_25 AC 58 ms
67,620 KB
testcase_26 AC 54 ms
66,100 KB
testcase_27 AC 51 ms
63,444 KB
testcase_28 AC 76 ms
68,336 KB
testcase_29 AC 76 ms
67,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N,M,T = map(int,input().split())
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(T):
    for pos in range(N):
        for nxt in G[pos]:
            DP[i+1][nxt] += DP[i][pos]
            DP[i+1][nxt] %= mod
print(DP[T][0])
0