結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー stngstng
提出日時 2022-05-15 13:31:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-07-26 20:11:34
合計ジャッジ時間 3,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,704 KB
testcase_01 AC 35 ms
52,192 KB
testcase_02 AC 35 ms
52,364 KB
testcase_03 AC 35 ms
53,040 KB
testcase_04 AC 65 ms
68,536 KB
testcase_05 AC 35 ms
52,944 KB
testcase_06 AC 43 ms
61,268 KB
testcase_07 AC 42 ms
62,184 KB
testcase_08 AC 36 ms
52,688 KB
testcase_09 AC 38 ms
57,644 KB
testcase_10 AC 56 ms
75,780 KB
testcase_11 AC 55 ms
76,056 KB
testcase_12 AC 87 ms
76,076 KB
testcase_13 AC 47 ms
61,304 KB
testcase_14 AC 60 ms
65,164 KB
testcase_15 AC 62 ms
66,972 KB
testcase_16 AC 67 ms
67,212 KB
testcase_17 AC 77 ms
76,152 KB
testcase_18 AC 91 ms
76,544 KB
testcase_19 AC 89 ms
76,076 KB
testcase_20 AC 50 ms
64,872 KB
testcase_21 AC 49 ms
63,828 KB
testcase_22 AC 37 ms
53,008 KB
testcase_23 AC 41 ms
59,476 KB
testcase_24 AC 40 ms
59,520 KB
testcase_25 AC 53 ms
72,928 KB
testcase_26 AC 54 ms
67,264 KB
testcase_27 AC 52 ms
63,772 KB
testcase_28 AC 68 ms
67,880 KB
testcase_29 AC 74 ms
68,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,T = map(int,input().split())
st = [[] for i in range(n)]
mod = 998244353

for i in range(m):
    s,t = map(int,input().split())
    st[s].append(t)
    st[t].append(s)

ct = [0]*n
ct[0] = 1

for i in range(T):
    nct = [0]*n
    for j in range(n):
        for k in st[j]:
            nct[j] += ct[k]
            nct[j] %= mod
    ct = nct[:]
    #print(ct)

print(ct[0])
0