結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー 河野竜也河野竜也
提出日時 2022-06-21 13:17:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,030 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-10-14 06:37:05
合計ジャッジ時間 8,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 768 ms
12,160 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 215 ms
18,688 KB
testcase_11 AC 223 ms
18,688 KB
testcase_12 AC 985 ms
33,664 KB
testcase_13 AC 35 ms
10,752 KB
testcase_14 AC 69 ms
10,880 KB
testcase_15 AC 189 ms
11,264 KB
testcase_16 AC 323 ms
11,904 KB
testcase_17 AC 806 ms
21,888 KB
testcase_18 AC 1,030 ms
39,040 KB
testcase_19 AC 775 ms
16,128 KB
testcase_20 AC 58 ms
11,264 KB
testcase_21 AC 52 ms
10,880 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 33 ms
10,624 KB
testcase_25 AC 191 ms
16,128 KB
testcase_26 AC 82 ms
12,544 KB
testcase_27 AC 59 ms
11,648 KB
testcase_28 AC 731 ms
12,160 KB
testcase_29 AC 681 ms
12,160 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