結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 86 ms
66,688 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 50 ms
60,416 KB
testcase_07 AC 51 ms
60,160 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 44 ms
57,472 KB
testcase_10 AC 57 ms
67,840 KB
testcase_11 AC 59 ms
67,968 KB
testcase_12 AC 102 ms
73,088 KB
testcase_13 AC 48 ms
59,648 KB
testcase_14 AC 66 ms
64,768 KB
testcase_15 AC 68 ms
64,768 KB
testcase_16 AC 72 ms
66,048 KB
testcase_17 AC 87 ms
74,112 KB
testcase_18 AC 109 ms
75,904 KB
testcase_19 AC 108 ms
76,160 KB
testcase_20 AC 58 ms
62,976 KB
testcase_21 AC 56 ms
62,976 KB
testcase_22 AC 41 ms
52,224 KB
testcase_23 AC 48 ms
58,752 KB
testcase_24 AC 50 ms
58,752 KB
testcase_25 AC 63 ms
67,328 KB
testcase_26 AC 60 ms
64,256 KB
testcase_27 AC 56 ms
61,824 KB
testcase_28 AC 80 ms
66,304 KB
testcase_29 AC 79 ms
66,688 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