結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-19 21:49:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 76,624 KB
最終ジャッジ日時 2024-12-31 22:53:15
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,140 KB
testcase_01 AC 38 ms
52,680 KB
testcase_02 AC 41 ms
52,560 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
53,056 KB
testcase_07 WA -
testcase_08 AC 40 ms
53,372 KB
testcase_09 WA -
testcase_10 AC 40 ms
53,292 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 88 ms
76,156 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 48 ms
58,960 KB
testcase_24 WA -
testcase_25 AC 65 ms
76,216 KB
testcase_26 AC 71 ms
76,624 KB
testcase_27 AC 70 ms
76,060 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,t = map(int,input().split())
l = [[] for _ in range(n)]
for i in range(m):
    s,t = map(int,input().split())
    l[s].append(t)
    l[t].append(s)
rmd = [0] * n
rmd[0] = 1
for i in range(t):
    new_rmd = [0] * n
    for node in range(n):
        for nd in l[node]:
            new_rmd[nd]  += rmd[node] 
            new_rmd[nd] %= 998244353 
#     print(new_rmd)
    rmd = new_rmd[::]
print(rmd[0])
0