結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー shinichishinichi
提出日時 2021-11-20 01:28:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,580 KB
最終ジャッジ日時 2024-06-10 14:20:34
合計ジャッジ時間 3,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,920 KB
testcase_01 AC 40 ms
54,236 KB
testcase_02 AC 41 ms
53,744 KB
testcase_03 AC 42 ms
54,968 KB
testcase_04 AC 78 ms
69,860 KB
testcase_05 AC 41 ms
54,784 KB
testcase_06 AC 49 ms
64,056 KB
testcase_07 AC 48 ms
62,764 KB
testcase_08 AC 42 ms
54,112 KB
testcase_09 AC 44 ms
59,992 KB
testcase_10 AC 63 ms
70,792 KB
testcase_11 AC 62 ms
70,584 KB
testcase_12 AC 110 ms
76,148 KB
testcase_13 AC 49 ms
61,976 KB
testcase_14 AC 61 ms
67,828 KB
testcase_15 AC 64 ms
67,392 KB
testcase_16 AC 67 ms
68,520 KB
testcase_17 AC 88 ms
75,820 KB
testcase_18 AC 114 ms
76,580 KB
testcase_19 AC 108 ms
76,244 KB
testcase_20 AC 57 ms
65,656 KB
testcase_21 AC 55 ms
66,676 KB
testcase_22 AC 41 ms
54,996 KB
testcase_23 AC 47 ms
61,312 KB
testcase_24 AC 48 ms
60,856 KB
testcase_25 AC 67 ms
70,300 KB
testcase_26 AC 61 ms
66,748 KB
testcase_27 AC 57 ms
64,716 KB
testcase_28 AC 73 ms
68,804 KB
testcase_29 AC 72 ms
69,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


N, M, T = map(int, input().split())
graph = defaultdict(list)
for _ in range(M):
    s, t = map(int, input().split())
    graph[s].append(t)
    graph[t].append(s)

cnt = [0] * N
new_cnt = [0] * N
cnt[0] = 1
mod = 998244353

while T > 0:
    new_cnt = [0] * N
    for s in range(N):
        for t in graph[s]:
            new_cnt[t] += cnt[s]
            new_cnt[t] %= mod
    cnt, new_cnt = new_cnt, cnt
    T -= 1
print(cnt[0])
0