結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー Eki1009Eki1009
提出日時 2021-11-19 21:45:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 76,976 KB
最終ジャッジ日時 2024-06-10 08:27:49
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,224 KB
testcase_01 AC 37 ms
52,568 KB
testcase_02 AC 33 ms
52,744 KB
testcase_03 AC 34 ms
52,996 KB
testcase_04 AC 89 ms
75,544 KB
testcase_05 AC 36 ms
52,756 KB
testcase_06 AC 51 ms
64,144 KB
testcase_07 AC 50 ms
63,588 KB
testcase_08 AC 38 ms
54,244 KB
testcase_09 AC 42 ms
60,704 KB
testcase_10 AC 109 ms
76,056 KB
testcase_11 AC 113 ms
76,132 KB
testcase_12 AC 207 ms
76,976 KB
testcase_13 AC 57 ms
72,392 KB
testcase_14 AC 64 ms
76,108 KB
testcase_15 AC 67 ms
75,896 KB
testcase_16 AC 72 ms
75,864 KB
testcase_17 AC 112 ms
76,052 KB
testcase_18 AC 186 ms
76,776 KB
testcase_19 AC 179 ms
76,140 KB
testcase_20 AC 67 ms
75,608 KB
testcase_21 AC 68 ms
75,864 KB
testcase_22 AC 35 ms
52,884 KB
testcase_23 AC 47 ms
63,888 KB
testcase_24 AC 44 ms
63,948 KB
testcase_25 AC 92 ms
75,888 KB
testcase_26 AC 71 ms
75,828 KB
testcase_27 AC 61 ms
75,908 KB
testcase_28 AC 85 ms
76,136 KB
testcase_29 AC 86 ms
75,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n,m,t = map(int,input().split())
G = [[] for _ in range(n)]
for _ in range(m):
    u,v = map(int,input().split())
    G[u].append(v)
    G[v].append(u)
C = [0]*n
C[0] = 1
for _ in range(t):
    C = [sum(C[u] for u in G[i])%mod for i in range(n)]
print(C[0])
0