結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー tamatotamato
提出日時 2021-11-19 21:32:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 69,680 KB
最終ジャッジ日時 2024-06-10 08:00:38
合計ジャッジ時間 2,521 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,484 KB
testcase_01 AC 41 ms
52,568 KB
testcase_02 AC 39 ms
53,080 KB
testcase_03 AC 37 ms
53,772 KB
testcase_04 AC 66 ms
62,060 KB
testcase_05 AC 39 ms
53,812 KB
testcase_06 AC 38 ms
52,936 KB
testcase_07 AC 38 ms
53,344 KB
testcase_08 AC 37 ms
52,796 KB
testcase_09 AC 38 ms
53,020 KB
testcase_10 AC 41 ms
62,348 KB
testcase_11 AC 42 ms
61,140 KB
testcase_12 AC 68 ms
69,680 KB
testcase_13 AC 45 ms
60,548 KB
testcase_14 AC 46 ms
62,160 KB
testcase_15 AC 50 ms
62,592 KB
testcase_16 AC 54 ms
61,844 KB
testcase_17 AC 62 ms
64,284 KB
testcase_18 AC 67 ms
68,728 KB
testcase_19 AC 66 ms
68,408 KB
testcase_20 AC 44 ms
59,880 KB
testcase_21 AC 43 ms
59,496 KB
testcase_22 AC 38 ms
52,404 KB
testcase_23 AC 37 ms
53,636 KB
testcase_24 AC 42 ms
58,088 KB
testcase_25 AC 46 ms
65,628 KB
testcase_26 AC 44 ms
61,980 KB
testcase_27 AC 42 ms
59,948 KB
testcase_28 AC 64 ms
62,688 KB
testcase_29 AC 62 ms
63,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, M, T = map(int, input().split())
    E = []
    for _ in range(M):
        E.append(tuple(map(int, input().split())))

    dp = [[0] * N for _ in range(T+1)]
    dp[0][0] = 1
    for t in range(1, T+1):
        for u, v in E:
            dp[t][u] = (dp[t][u] + dp[t - 1][v])%mod
            dp[t][v] = (dp[t][v] + dp[t - 1][u]) % mod
    print(dp[-1][0])


if __name__ == '__main__':
    main()
0