結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー S6136OS6136O
提出日時 2021-11-20 01:17:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 889 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 194,816 KB
最終ジャッジ日時 2024-06-10 14:06:35
合計ジャッジ時間 6,536 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 510 ms
24,704 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 191 ms
18,432 KB
testcase_11 AC 175 ms
18,432 KB
testcase_12 AC 784 ms
194,816 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 44 ms
10,752 KB
testcase_15 AC 125 ms
12,160 KB
testcase_16 AC 202 ms
15,232 KB
testcase_17 AC 573 ms
62,336 KB
testcase_18 AC 889 ms
110,080 KB
testcase_19 AC 131 ms
16,256 KB
testcase_20 AC 48 ms
12,416 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 24 ms
10,624 KB
testcase_23 AC 24 ms
10,624 KB
testcase_24 AC 26 ms
10,752 KB
testcase_25 AC 128 ms
16,000 KB
testcase_26 AC 59 ms
12,160 KB
testcase_27 AC 43 ms
11,392 KB
testcase_28 AC 512 ms
24,576 KB
testcase_29 AC 486 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

DIV = 998244353

# N : 都市の個数
# M : 道路の本数
# T : 目標の日数
N, M, T = map(lambda x: int(x), input().split())
T += 1

# 各都市同士のつながりをあらわす辞書
road = {}
for i in range(M):
    s, t = map(lambda x: int(x), input().split())
    if s in road:
        road[s].append(t)
    else:
        road[s] = [t]
    if t in road:
        road[t].append(s)
    else:
        road[t] = [s]

# 状態遷移テーブル
table = [[0] * N for i in range(T)]
# 都市0のT=0時点での初期値を設定
table[0][0] = 1

for t in range(1, T):
    for n in range(N):
        if table[t-1][n] == 0:
            continue
        if n not in road:
            continue
        for city in road[n]:
            table[t][city] += table[t-1][n]

# 結果表示
print(table[-1][0] % DIV)

0