結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ygd.ygd.
提出日時 2021-11-21 12:39:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 76,000 KB
最終ジャッジ日時 2024-06-22 18:51:29
合計ジャッジ時間 3,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,472 KB
testcase_01 AC 37 ms
52,464 KB
testcase_02 AC 38 ms
53,264 KB
testcase_03 AC 38 ms
53,148 KB
testcase_04 AC 95 ms
67,464 KB
testcase_05 AC 37 ms
53,340 KB
testcase_06 AC 45 ms
61,292 KB
testcase_07 AC 45 ms
61,008 KB
testcase_08 AC 37 ms
53,824 KB
testcase_09 AC 40 ms
59,088 KB
testcase_10 AC 49 ms
70,092 KB
testcase_11 AC 51 ms
69,032 KB
testcase_12 AC 114 ms
75,924 KB
testcase_13 AC 45 ms
62,340 KB
testcase_14 AC 55 ms
63,892 KB
testcase_15 AC 62 ms
66,312 KB
testcase_16 AC 72 ms
66,480 KB
testcase_17 AC 97 ms
75,584 KB
testcase_18 AC 120 ms
76,000 KB
testcase_19 AC 114 ms
75,940 KB
testcase_20 AC 51 ms
63,568 KB
testcase_21 AC 51 ms
64,048 KB
testcase_22 AC 39 ms
53,072 KB
testcase_23 AC 42 ms
58,644 KB
testcase_24 AC 44 ms
60,032 KB
testcase_25 AC 56 ms
70,668 KB
testcase_26 AC 53 ms
65,552 KB
testcase_27 AC 48 ms
62,872 KB
testcase_28 AC 92 ms
67,808 KB
testcase_29 AC 89 ms
67,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline


def main():
    N,M,T = map(int,input().split()); MOD = 998244353
    G =[[] for _ in range(N)]
    for i in range(M):
        a,b = map(int,input().split())
        G[a].append(b)
        G[b].append(a)
    
    dp = [0]*N
    dp[0] = 1
    for i in range(T):
        p = [0]*N
        p,dp = dp,p
        for v in range(N):
            for u in G[v]:
                dp[v] += p[u]
                dp[v] %= MOD
    ans = dp[0]%MOD
    print(ans)
        

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