結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー 👑 KazunKazun
提出日時 2021-11-19 21:39:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 62,740 KB
最終ジャッジ日時 2024-06-10 08:13:10
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,008 KB
testcase_01 AC 38 ms
52,196 KB
testcase_02 AC 38 ms
52,644 KB
testcase_03 AC 37 ms
52,860 KB
testcase_04 AC 54 ms
61,584 KB
testcase_05 AC 39 ms
52,840 KB
testcase_06 AC 43 ms
59,300 KB
testcase_07 AC 43 ms
60,144 KB
testcase_08 AC 37 ms
52,888 KB
testcase_09 AC 40 ms
58,956 KB
testcase_10 AC 49 ms
59,784 KB
testcase_11 AC 47 ms
60,152 KB
testcase_12 AC 57 ms
62,616 KB
testcase_13 AC 47 ms
61,936 KB
testcase_14 AC 46 ms
61,696 KB
testcase_15 AC 47 ms
61,336 KB
testcase_16 AC 52 ms
61,336 KB
testcase_17 AC 56 ms
61,840 KB
testcase_18 AC 55 ms
62,472 KB
testcase_19 AC 54 ms
62,740 KB
testcase_20 AC 45 ms
61,700 KB
testcase_21 AC 46 ms
60,652 KB
testcase_22 AC 37 ms
52,420 KB
testcase_23 AC 41 ms
58,172 KB
testcase_24 AC 43 ms
60,512 KB
testcase_25 AC 48 ms
60,004 KB
testcase_26 AC 47 ms
61,636 KB
testcase_27 AC 44 ms
59,888 KB
testcase_28 AC 53 ms
62,180 KB
testcase_29 AC 52 ms
62,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

N,M,T=map(int,input().split())
Mod=998244353

E=[]
for _ in range(M):
    s,t=map(int,input().split())
    E.append((s,t))

DP=[0]*N; DP[0]=1
D=[0]*N

for _ in range(T):
    for k in range(N):
        D[k]=DP[k]%Mod
        DP[k]=0

    for s,t in E:
        DP[s]+=D[t]
        DP[t]+=D[s]

print(DP[0]%Mod)
0