結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー MineMine
提出日時 2022-01-07 22:00:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 76,444 KB
最終ジャッジ日時 2024-11-14 08:47:00
合計ジャッジ時間 2,966 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,752 KB
testcase_01 AC 36 ms
52,876 KB
testcase_02 AC 36 ms
52,724 KB
testcase_03 AC 36 ms
53,020 KB
testcase_04 AC 69 ms
67,304 KB
testcase_05 AC 36 ms
52,068 KB
testcase_06 AC 44 ms
61,488 KB
testcase_07 AC 47 ms
60,736 KB
testcase_08 AC 38 ms
52,724 KB
testcase_09 AC 40 ms
58,244 KB
testcase_10 AC 50 ms
68,636 KB
testcase_11 AC 49 ms
68,340 KB
testcase_12 AC 89 ms
73,596 KB
testcase_13 AC 43 ms
60,736 KB
testcase_14 AC 56 ms
66,932 KB
testcase_15 AC 58 ms
65,640 KB
testcase_16 AC 63 ms
67,296 KB
testcase_17 AC 76 ms
74,616 KB
testcase_18 AC 95 ms
76,204 KB
testcase_19 AC 94 ms
76,444 KB
testcase_20 AC 51 ms
64,920 KB
testcase_21 AC 50 ms
63,928 KB
testcase_22 AC 37 ms
53,788 KB
testcase_23 AC 41 ms
59,296 KB
testcase_24 AC 43 ms
59,528 KB
testcase_25 AC 51 ms
68,588 KB
testcase_26 AC 53 ms
64,348 KB
testcase_27 AC 49 ms
64,448 KB
testcase_28 AC 70 ms
67,644 KB
testcase_29 AC 70 ms
67,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,t = map(int, input().split())
graph = [[] for i in range(n)]
for i in range(m):
    a, b = map(int, input().split())
    graph[a].append(b)
    graph[b].append(a)

mod = 998244353
ans = [0]*n
ans[0] = 1
for _ in range(t):
    ans_copy = ans.copy()
    for to in range(n):
        ans[to] = 0
        for fr in graph[to]:
            ans[to] += ans_copy[fr]
            ans[to] %= mod
print(ans[0])
        
0