結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー suosuo
提出日時 2021-11-19 21:41:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 76,120 KB
最終ジャッジ日時 2024-06-10 08:19:00
合計ジャッジ時間 2,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,640 KB
testcase_01 AC 37 ms
53,384 KB
testcase_02 AC 38 ms
52,328 KB
testcase_03 AC 38 ms
53,276 KB
testcase_04 AC 77 ms
69,948 KB
testcase_05 AC 37 ms
52,940 KB
testcase_06 AC 50 ms
64,536 KB
testcase_07 AC 49 ms
62,912 KB
testcase_08 AC 38 ms
52,484 KB
testcase_09 AC 41 ms
57,776 KB
testcase_10 AC 53 ms
71,068 KB
testcase_11 AC 55 ms
71,300 KB
testcase_12 AC 98 ms
76,120 KB
testcase_13 AC 47 ms
62,448 KB
testcase_14 AC 58 ms
65,628 KB
testcase_15 AC 61 ms
66,412 KB
testcase_16 AC 68 ms
67,864 KB
testcase_17 AC 83 ms
75,996 KB
testcase_18 AC 97 ms
75,916 KB
testcase_19 AC 96 ms
75,952 KB
testcase_20 AC 54 ms
65,764 KB
testcase_21 AC 54 ms
65,472 KB
testcase_22 AC 39 ms
53,504 KB
testcase_23 AC 44 ms
59,168 KB
testcase_24 AC 44 ms
59,276 KB
testcase_25 AC 58 ms
68,716 KB
testcase_26 AC 52 ms
65,476 KB
testcase_27 AC 49 ms
62,592 KB
testcase_28 AC 73 ms
69,032 KB
testcase_29 AC 72 ms
68,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,T = map(int,input().split())
load = [[] for i in range(n)]
for i in range(m):
  s,t = map(int,input().split())
  load[s].append(t)
  load[t].append(s)
mod = 998244353
dp = [0 for i in range(n)]
dp[0] = 1
for i in range(T):
  new = [0 for j in range(n)]
  for j in range(n):
    for k in load[j]:
      new[j] += dp[k]
      new[j] %= mod
  dp = new
print(dp[0])
0