結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー 👑 rin204rin204
提出日時 2022-01-18 02:06:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,808 KB
最終ジャッジ日時 2024-11-23 13:08:21
合計ジャッジ時間 3,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 80 ms
64,512 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 44 ms
52,480 KB
testcase_07 AC 44 ms
52,480 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 48 ms
60,288 KB
testcase_11 AC 50 ms
60,416 KB
testcase_12 AC 86 ms
71,808 KB
testcase_13 AC 52 ms
60,672 KB
testcase_14 AC 63 ms
63,872 KB
testcase_15 AC 66 ms
64,128 KB
testcase_16 AC 71 ms
64,512 KB
testcase_17 AC 80 ms
66,816 KB
testcase_18 AC 89 ms
71,040 KB
testcase_19 AC 87 ms
69,888 KB
testcase_20 AC 51 ms
59,648 KB
testcase_21 AC 51 ms
59,904 KB
testcase_22 AC 42 ms
52,096 KB
testcase_23 AC 41 ms
52,224 KB
testcase_24 AC 49 ms
59,264 KB
testcase_25 AC 56 ms
65,024 KB
testcase_26 AC 52 ms
61,568 KB
testcase_27 AC 51 ms
60,288 KB
testcase_28 AC 81 ms
64,768 KB
testcase_29 AC 80 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n, m, T = map(int, input().split())
edges = []
for _ in range(m):
    s, t = map(int, input().split())
    edges.append((s, t))
    
dp = [[0] * n for _ in range(T + 1)]
dp[0][0] = 1
for i in range(1, T + 1):
    for s, t in edges:
        dp[i][s] += dp[i - 1][t]
        dp[i][t] += dp[i - 1][s]
        dp[i][s] %= MOD
        dp[i][t] %= MOD
        
print(dp[-1][0])
0