結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー tobusakanatobusakana
提出日時 2022-11-25 22:54:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-10-02 05:26:52
合計ジャッジ時間 3,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 44 ms
51,840 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 79 ms
66,944 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 51 ms
60,416 KB
testcase_07 AC 51 ms
60,672 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 45 ms
57,984 KB
testcase_10 AC 60 ms
68,480 KB
testcase_11 AC 62 ms
68,480 KB
testcase_12 AC 108 ms
73,600 KB
testcase_13 AC 51 ms
59,904 KB
testcase_14 AC 67 ms
64,384 KB
testcase_15 AC 70 ms
65,024 KB
testcase_16 AC 72 ms
66,688 KB
testcase_17 AC 90 ms
74,624 KB
testcase_18 AC 109 ms
76,416 KB
testcase_19 AC 104 ms
76,288 KB
testcase_20 AC 59 ms
63,488 KB
testcase_21 AC 57 ms
63,232 KB
testcase_22 AC 42 ms
52,352 KB
testcase_23 AC 47 ms
59,008 KB
testcase_24 AC 48 ms
59,008 KB
testcase_25 AC 63 ms
67,200 KB
testcase_26 AC 61 ms
64,896 KB
testcase_27 AC 57 ms
62,208 KB
testcase_28 AC 77 ms
66,944 KB
testcase_29 AC 76 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,T = map(int,input().split())
G = [[] for i in range(N)]
for i in range(M):
    s,t = map(int,input().split())
    G[s].append(t)
    G[t].append(s)
    
dp = [0] * N
dp[0] = 1

DIV = 998244353
for _ in range(T):
    new_dp = [0] * N
    for i in range(N):
        for child in G[i]:
            new_dp[child] += dp[i]
            new_dp[child] %= DIV
    dp = new_dp
print(dp[0])
            
0