結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ramdosramdos
提出日時 2021-10-14 10:46:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 392 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 98,704 KB
最終ジャッジ日時 2024-06-10 06:54:09
合計ジャッジ時間 4,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,824 KB
testcase_01 AC 40 ms
53,104 KB
testcase_02 AC 37 ms
53,472 KB
testcase_03 AC 38 ms
52,952 KB
testcase_04 AC 88 ms
71,360 KB
testcase_05 AC 38 ms
53,144 KB
testcase_06 AC 47 ms
62,308 KB
testcase_07 AC 48 ms
62,748 KB
testcase_08 AC 54 ms
69,468 KB
testcase_09 AC 61 ms
70,812 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,T=map(int, input().split())
vec=[[0 for i in range(N)] for j in range(N)]
for i in range(M):
  vs,vt=map(int, input().split())
  vec[vs][vt]=1
  vec[vt][vs]=1
dp=[[0 for i in range(N)] for j in range(T+1)]
dp[0][0]=1
for i in range(T):
  for j in range(N):
    for k in range(N):
      if(vec[j][k]==1):
        dp[i+1][j]+=dp[i][k]
        dp[i+1][j]%=998244353
print(dp[T][0]%998244353)
0