結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー hir355hir355
提出日時 2021-11-19 21:39:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-10 08:13:04
合計ジャッジ時間 2,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,212 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 34 ms
52,352 KB
testcase_04 AC 65 ms
67,968 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 47 ms
62,592 KB
testcase_07 AC 47 ms
62,592 KB
testcase_08 AC 36 ms
52,736 KB
testcase_09 AC 40 ms
58,496 KB
testcase_10 AC 62 ms
76,032 KB
testcase_11 AC 62 ms
75,652 KB
testcase_12 AC 98 ms
76,288 KB
testcase_13 AC 49 ms
62,336 KB
testcase_14 AC 58 ms
65,280 KB
testcase_15 AC 59 ms
65,920 KB
testcase_16 AC 64 ms
67,456 KB
testcase_17 AC 78 ms
76,160 KB
testcase_18 AC 93 ms
75,948 KB
testcase_19 AC 92 ms
76,416 KB
testcase_20 AC 51 ms
64,128 KB
testcase_21 AC 51 ms
64,256 KB
testcase_22 AC 34 ms
52,224 KB
testcase_23 AC 40 ms
59,520 KB
testcase_24 AC 40 ms
59,520 KB
testcase_25 AC 58 ms
73,452 KB
testcase_26 AC 54 ms
67,072 KB
testcase_27 AC 50 ms
64,128 KB
testcase_28 AC 65 ms
68,608 KB
testcase_29 AC 65 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n, m, tt = map(int, input().split())
g = [[] for _ in range(n)]
for i in range(m):
    s, t = map(int, input().split())
    g[s].append(t)
    g[t].append(s)
d = [0] * n
d[0] = 1
for i in range(tt):
    tmp = [0] * n
    for j in range(n):
        for v in g[j]:
            tmp[j] += d[v]
    for j in range(n):
        tmp[j] %= MOD
    d = tmp[:]
print(d[0])
0