結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー wgrapewgrape
提出日時 2024-10-09 15:38:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 76,420 KB
最終ジャッジ日時 2024-10-09 15:38:49
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,464 KB
testcase_01 AC 38 ms
52,344 KB
testcase_02 AC 36 ms
52,732 KB
testcase_03 AC 37 ms
52,636 KB
testcase_04 AC 62 ms
66,824 KB
testcase_05 AC 36 ms
53,084 KB
testcase_06 AC 45 ms
60,904 KB
testcase_07 AC 43 ms
60,520 KB
testcase_08 AC 37 ms
52,784 KB
testcase_09 AC 42 ms
59,276 KB
testcase_10 AC 54 ms
68,600 KB
testcase_11 AC 54 ms
69,428 KB
testcase_12 AC 86 ms
73,856 KB
testcase_13 AC 49 ms
60,320 KB
testcase_14 AC 57 ms
66,072 KB
testcase_15 AC 58 ms
66,140 KB
testcase_16 AC 61 ms
67,908 KB
testcase_17 AC 70 ms
74,536 KB
testcase_18 AC 92 ms
76,376 KB
testcase_19 AC 89 ms
76,420 KB
testcase_20 AC 50 ms
63,120 KB
testcase_21 AC 48 ms
64,916 KB
testcase_22 AC 38 ms
53,320 KB
testcase_23 AC 43 ms
59,340 KB
testcase_24 AC 43 ms
59,336 KB
testcase_25 AC 55 ms
68,732 KB
testcase_26 AC 53 ms
65,968 KB
testcase_27 AC 50 ms
63,760 KB
testcase_28 AC 63 ms
66,756 KB
testcase_29 AC 63 ms
66,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

DIV = 998244353
N,M,T = map(int,input().split())
G = [[] for i in range(N)]
for _ in range(M):
    s,t = map(int,input().split())
    G[s].append(t)
    G[t].append(s)

dp = [0] * N
dp[0] = 1

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