結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー lloyzlloyz
提出日時 2021-11-19 22:29:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-06-10 09:40:55
合計ジャッジ時間 2,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,556 KB
testcase_01 AC 38 ms
54,836 KB
testcase_02 AC 37 ms
53,600 KB
testcase_03 AC 39 ms
54,440 KB
testcase_04 AC 80 ms
71,092 KB
testcase_05 AC 39 ms
54,640 KB
testcase_06 AC 51 ms
65,124 KB
testcase_07 AC 52 ms
65,404 KB
testcase_08 AC 40 ms
54,852 KB
testcase_09 AC 45 ms
60,340 KB
testcase_10 AC 69 ms
76,428 KB
testcase_11 AC 64 ms
76,508 KB
testcase_12 AC 103 ms
76,884 KB
testcase_13 AC 47 ms
64,604 KB
testcase_14 AC 60 ms
67,084 KB
testcase_15 AC 66 ms
68,872 KB
testcase_16 AC 71 ms
70,288 KB
testcase_17 AC 89 ms
76,764 KB
testcase_18 AC 117 ms
76,600 KB
testcase_19 AC 110 ms
76,692 KB
testcase_20 AC 58 ms
67,076 KB
testcase_21 AC 57 ms
67,524 KB
testcase_22 AC 43 ms
55,360 KB
testcase_23 AC 48 ms
61,652 KB
testcase_24 AC 47 ms
62,572 KB
testcase_25 AC 70 ms
76,432 KB
testcase_26 AC 56 ms
69,212 KB
testcase_27 AC 49 ms
66,880 KB
testcase_28 AC 69 ms
71,160 KB
testcase_29 AC 67 ms
71,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

n, m, t = map(int, input().split())
edge = defaultdict(list)
for _ in range(m):
    a, b = map(int, input().split())
    edge[a].append(b)
    edge[b].append(a)
mod = 998244353

dp = [0 for _ in range(n)]
dp[0] = 1
for _ in range(t):
    ndp = [0 for _ in range(n)]
    for i in range(n):
        for j in edge[i]:
            ndp[j] += dp[i]
            ndp[j] %= mod
    dp = ndp[:]
print(dp[0])
0