結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ramdosramdos
提出日時 2021-10-13 15:33:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 71,516 KB
最終ジャッジ日時 2024-06-10 06:53:42
合計ジャッジ時間 3,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 37 ms
52,880 KB
testcase_02 AC 37 ms
53,348 KB
testcase_03 AC 39 ms
52,444 KB
testcase_04 AC 64 ms
65,104 KB
testcase_05 AC 39 ms
52,880 KB
testcase_06 AC 44 ms
59,972 KB
testcase_07 AC 44 ms
59,216 KB
testcase_08 AC 40 ms
58,996 KB
testcase_09 AC 39 ms
57,876 KB
testcase_10 AC 48 ms
67,280 KB
testcase_11 AC 50 ms
67,028 KB
testcase_12 AC 73 ms
71,516 KB
testcase_13 AC 49 ms
63,000 KB
testcase_14 AC 50 ms
61,340 KB
testcase_15 AC 53 ms
62,016 KB
testcase_16 AC 55 ms
63,912 KB
testcase_17 AC 65 ms
66,060 KB
testcase_18 AC 70 ms
70,856 KB
testcase_19 AC 70 ms
70,412 KB
testcase_20 AC 50 ms
62,320 KB
testcase_21 AC 51 ms
62,992 KB
testcase_22 AC 39 ms
52,944 KB
testcase_23 AC 41 ms
58,076 KB
testcase_24 AC 45 ms
59,904 KB
testcase_25 AC 53 ms
67,260 KB
testcase_26 AC 48 ms
64,256 KB
testcase_27 AC 49 ms
62,968 KB
testcase_28 AC 68 ms
64,576 KB
testcase_29 AC 65 ms
64,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input = stdin.readline
N,M,T=map(int, input().split())
vs=[0]*M
vt=[0]*M
for i in range(M):
  vs[i],vt[i]=map(int, input().split())
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(M):
    dp[i+1][vs[j]]+=dp[i][vt[j]]
    dp[i+1][vs[j]]%=998244353
    dp[i+1][vt[j]]+=dp[i][vs[j]]
    dp[i+1][vt[j]]%=998244353
print(dp[T][0]%998244353)
0