結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-11-19 23:21:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 77,096 KB
最終ジャッジ日時 2024-06-10 10:51:01
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 94 ms
76,928 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 63 ms
69,632 KB
testcase_07 AC 63 ms
69,504 KB
testcase_08 AC 43 ms
54,272 KB
testcase_09 AC 49 ms
61,824 KB
testcase_10 AC 130 ms
76,848 KB
testcase_11 AC 130 ms
76,876 KB
testcase_12 AC 174 ms
77,096 KB
testcase_13 AC 62 ms
70,272 KB
testcase_14 AC 67 ms
69,376 KB
testcase_15 AC 72 ms
72,448 KB
testcase_16 AC 86 ms
76,904 KB
testcase_17 AC 117 ms
76,824 KB
testcase_18 AC 178 ms
76,992 KB
testcase_19 AC 152 ms
77,056 KB
testcase_20 AC 74 ms
73,548 KB
testcase_21 AC 74 ms
73,600 KB
testcase_22 AC 42 ms
53,888 KB
testcase_23 AC 53 ms
63,744 KB
testcase_24 AC 55 ms
63,232 KB
testcase_25 AC 120 ms
76,900 KB
testcase_26 AC 94 ms
76,996 KB
testcase_27 AC 72 ms
76,204 KB
testcase_28 AC 95 ms
76,776 KB
testcase_29 AC 94 ms
76,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, t = map(int, input().split())
G = [[] for i in range(n)]
for _ in range(m):
	a, b = map(int, input().split())
	G[a].append(b)
	G[b].append(a)
cnt = [0] * n
cnt[0] = 1
mod = 998244353
from copy import deepcopy
for _ in range(t):
	ncnt = [0] * n
	for i in range(n):
		for v in G[i]:
			ncnt[i] += cnt[v]
			ncnt[i] %= mod
	cnt = deepcopy(ncnt)
print(cnt[0])
0