結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ああいいああいい
提出日時 2022-03-16 17:20:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 74,044 KB
最終ジャッジ日時 2024-09-24 17:35:53
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,096 KB
testcase_01 AC 36 ms
53,076 KB
testcase_02 AC 33 ms
52,084 KB
testcase_03 AC 33 ms
52,264 KB
testcase_04 AC 56 ms
66,316 KB
testcase_05 AC 33 ms
52,800 KB
testcase_06 AC 41 ms
60,168 KB
testcase_07 AC 41 ms
60,200 KB
testcase_08 AC 35 ms
52,136 KB
testcase_09 AC 38 ms
58,324 KB
testcase_10 AC 43 ms
67,376 KB
testcase_11 AC 49 ms
68,100 KB
testcase_12 AC 60 ms
74,044 KB
testcase_13 AC 43 ms
62,940 KB
testcase_14 AC 53 ms
64,300 KB
testcase_15 AC 54 ms
64,400 KB
testcase_16 AC 55 ms
65,480 KB
testcase_17 AC 59 ms
67,616 KB
testcase_18 AC 63 ms
71,996 KB
testcase_19 AC 61 ms
72,296 KB
testcase_20 AC 43 ms
61,548 KB
testcase_21 AC 43 ms
61,072 KB
testcase_22 AC 36 ms
52,248 KB
testcase_23 AC 37 ms
58,536 KB
testcase_24 AC 38 ms
59,460 KB
testcase_25 AC 44 ms
66,688 KB
testcase_26 AC 44 ms
62,536 KB
testcase_27 AC 42 ms
61,868 KB
testcase_28 AC 57 ms
66,792 KB
testcase_29 AC 58 ms
65,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * N
dp[0] = 1
P = 998244353
for _ in range(T):
    nx = [0] * N
    for s,t in edge:
        nx[t] += dp[s]
        nx[s] += dp[t]
    for i in range(N):
        nx[i] %= P
    dp = nx
print(dp[0])
0