結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ramdosramdos
提出日時 2021-10-13 15:32:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,088 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-06-10 06:54:02
合計ジャッジ時間 9,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 994 ms
12,288 KB
testcase_05 AC 33 ms
10,752 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 84 ms
19,456 KB
testcase_11 AC 85 ms
19,456 KB
testcase_12 AC 1,088 ms
34,688 KB
testcase_13 AC 34 ms
11,008 KB
testcase_14 AC 76 ms
11,008 KB
testcase_15 AC 226 ms
11,392 KB
testcase_16 AC 384 ms
12,160 KB
testcase_17 AC 878 ms
22,016 KB
testcase_18 AC 1,022 ms
40,064 KB
testcase_19 AC 797 ms
16,384 KB
testcase_20 AC 57 ms
11,648 KB
testcase_21 AC 51 ms
11,136 KB
testcase_22 AC 29 ms
10,880 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 32 ms
10,880 KB
testcase_25 AC 106 ms
16,768 KB
testcase_26 AC 48 ms
12,800 KB
testcase_27 AC 42 ms
11,520 KB
testcase_28 AC 904 ms
12,416 KB
testcase_29 AC 852 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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