結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー timitimi
提出日時 2021-11-19 22:13:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,092 KB
最終ジャッジ日時 2024-06-10 09:17:25
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 39 ms
53,760 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 39 ms
54,016 KB
testcase_04 AC 147 ms
76,928 KB
testcase_05 AC 38 ms
53,504 KB
testcase_06 AC 45 ms
55,808 KB
testcase_07 AC 46 ms
55,936 KB
testcase_08 AC 39 ms
53,760 KB
testcase_09 AC 40 ms
53,760 KB
testcase_10 AC 45 ms
55,424 KB
testcase_11 AC 44 ms
55,552 KB
testcase_12 AC 186 ms
77,092 KB
testcase_13 AC 56 ms
65,476 KB
testcase_14 AC 77 ms
72,832 KB
testcase_15 AC 94 ms
76,288 KB
testcase_16 AC 116 ms
76,720 KB
testcase_17 AC 176 ms
76,800 KB
testcase_18 AC 223 ms
77,056 KB
testcase_19 AC 197 ms
77,056 KB
testcase_20 AC 71 ms
71,296 KB
testcase_21 AC 70 ms
71,552 KB
testcase_22 AC 40 ms
54,400 KB
testcase_23 AC 40 ms
54,272 KB
testcase_24 AC 56 ms
64,768 KB
testcase_25 AC 74 ms
76,416 KB
testcase_26 AC 58 ms
66,176 KB
testcase_27 AC 54 ms
64,896 KB
testcase_28 AC 149 ms
76,672 KB
testcase_29 AC 153 ms
76,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import defaultdict
D=defaultdict(int)
D[0]=1
mod=998244353
for i in range(T):
  DD=defaultdict(int)
  for s,t in E:
    DD[s]+=D[t]
    DD[t]+=D[s]
    DD[s]%=mod
    DD[t]%=mod
  D=DD
print(D[0])
0