結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー lllllll88938494lllllll88938494
提出日時 2022-05-30 14:38:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,952 KB
実行使用メモリ 83,832 KB
最終ジャッジ日時 2024-09-21 00:52:00
合計ジャッジ時間 3,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 83 ms
69,120 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 49 ms
61,568 KB
testcase_07 AC 47 ms
61,184 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 41 ms
58,112 KB
testcase_10 AC 52 ms
68,736 KB
testcase_11 AC 51 ms
68,608 KB
testcase_12 AC 120 ms
83,832 KB
testcase_13 AC 45 ms
61,184 KB
testcase_14 AC 59 ms
64,768 KB
testcase_15 AC 66 ms
66,048 KB
testcase_16 AC 72 ms
68,224 KB
testcase_17 AC 97 ms
78,540 KB
testcase_18 AC 132 ms
82,816 KB
testcase_19 AC 131 ms
81,792 KB
testcase_20 AC 58 ms
66,176 KB
testcase_21 AC 54 ms
65,792 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 44 ms
59,520 KB
testcase_24 AC 44 ms
59,520 KB
testcase_25 AC 59 ms
70,400 KB
testcase_26 AC 56 ms
65,152 KB
testcase_27 AC 52 ms
63,616 KB
testcase_28 AC 83 ms
69,120 KB
testcase_29 AC 79 ms
69,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,t=map(int,input().split())
s=[set() for i in range(n)]
for i in range(m):
    x,y=map(int,input().split())
    s[x].add(y)
    s[y].add(x)
    
dp=[[0]*n for i in range(t+1)]
dp[0][0]=1
mod=998244353 

for i in range(1,t+1):
    for j in range(n):
        for k in s[j]:
            dp[i][j] += dp[i-1][k]
            dp[i][j] %= mod
            
print(dp[-1][0]%mod)
0