結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-19 22:41:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-06-10 09:56:52
合計ジャッジ時間 2,562 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 37 ms
51,936 KB
testcase_02 AC 36 ms
52,420 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 72 ms
66,304 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 39 ms
52,852 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 43 ms
60,160 KB
testcase_11 AC 42 ms
60,160 KB
testcase_12 AC 76 ms
73,344 KB
testcase_13 AC 46 ms
60,256 KB
testcase_14 AC 58 ms
65,024 KB
testcase_15 AC 61 ms
64,768 KB
testcase_16 AC 64 ms
65,408 KB
testcase_17 AC 72 ms
67,584 KB
testcase_18 AC 76 ms
72,576 KB
testcase_19 AC 74 ms
70,912 KB
testcase_20 AC 44 ms
59,776 KB
testcase_21 AC 43 ms
59,484 KB
testcase_22 AC 36 ms
52,864 KB
testcase_23 AC 35 ms
52,352 KB
testcase_24 AC 42 ms
58,752 KB
testcase_25 AC 46 ms
65,024 KB
testcase_26 AC 44 ms
61,312 KB
testcase_27 AC 43 ms
59,904 KB
testcase_28 AC 72 ms
65,664 KB
testcase_29 AC 74 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,t = map(int,input().split())
mod = 998244353
edge = [[int(x) for x in input().split()] for i in range(m)]

dp = [0]*n
dp[0] = 1
for i in range(t):
    ndp = [0]*n
    for u,v in edge:
        ndp[u] += dp[v]
        ndp[u] %= mod
        ndp[v] += dp[u]
        ndp[v] %= mod
    dp = ndp
print(dp[0])
0