結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー cookie63cookie63
提出日時 2023-01-24 20:35:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-06-26 06:37:51
合計ジャッジ時間 3,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 86 ms
69,376 KB
testcase_05 AC 47 ms
53,504 KB
testcase_06 AC 55 ms
63,744 KB
testcase_07 AC 55 ms
64,128 KB
testcase_08 AC 48 ms
58,880 KB
testcase_09 AC 50 ms
60,416 KB
testcase_10 AC 77 ms
72,576 KB
testcase_11 AC 79 ms
72,576 KB
testcase_12 AC 127 ms
84,352 KB
testcase_13 AC 55 ms
64,256 KB
testcase_14 AC 64 ms
66,176 KB
testcase_15 AC 71 ms
67,072 KB
testcase_16 AC 78 ms
68,480 KB
testcase_17 AC 109 ms
78,720 KB
testcase_18 AC 146 ms
83,840 KB
testcase_19 AC 136 ms
82,176 KB
testcase_20 AC 64 ms
66,176 KB
testcase_21 AC 62 ms
66,560 KB
testcase_22 AC 45 ms
53,888 KB
testcase_23 AC 52 ms
61,952 KB
testcase_24 AC 52 ms
61,568 KB
testcase_25 AC 77 ms
71,168 KB
testcase_26 AC 73 ms
67,584 KB
testcase_27 AC 65 ms
65,280 KB
testcase_28 AC 88 ms
69,376 KB
testcase_29 AC 91 ms
69,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
MOD = 998244353
n, m, t = map(int, input().split())
g = defaultdict(list)
for i in range(m):
    s, _t = map(int, input().split())
    g[s].append(_t)
    g[_t].append(s)

dp = [[0 for v in range(n)] for i in range(t+1)]
dp[0][0] = 1
for i in range(1, t+1):
    for v in range(n):
        for u in g[v]:
            dp[i][v] += dp[i-1][u] % MOD
        dp[i][v] %= MOD

print(dp[t][0])
0