結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー MineMine
提出日時 2022-01-07 23:18:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-04-26 19:04:21
合計ジャッジ時間 26,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 48 ms
57,984 KB
testcase_03 AC 48 ms
59,392 KB
testcase_04 AC 125 ms
71,296 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 44 ms
51,840 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 465 ms
75,776 KB
testcase_09 AC 463 ms
75,904 KB
testcase_10 AC 464 ms
75,904 KB
testcase_11 AC 380 ms
76,032 KB
testcase_12 AC 498 ms
76,032 KB
testcase_13 AC 472 ms
76,032 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,547 ms
76,288 KB
testcase_21 AC 1,820 ms
76,288 KB
testcase_22 AC 379 ms
75,648 KB
testcase_23 TLE -
testcase_24 AC 302 ms
75,704 KB
testcase_25 AC 630 ms
75,776 KB
testcase_26 AC 253 ms
75,648 KB
testcase_27 AC 60 ms
63,616 KB
testcase_28 AC 67 ms
65,408 KB
testcase_29 AC 62 ms
64,256 KB
testcase_30 AC 369 ms
75,776 KB
testcase_31 AC 354 ms
75,648 KB
testcase_32 AC 349 ms
76,032 KB
testcase_33 AC 343 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mul(a, b, mod=998244353):
    n = len(a)
    ret = [[0]*n for i in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                ret[i][j] += a[i][k] * b[k][j]
                ret[i][j] %= mod
    return ret


n, m, t = map(int, input().split())
mod = 998244353
graph = [[0]*n for i in range(n)]
for i in range(m):
    a, b = map(int, input().split())
    graph[a][b] = 1
    graph[b][a] = 1

ans = [[0]*n for i in range(n)]
for i in range(n):
    ans[i][i] = 1

t_bin = bin(t)[2:]
for i in range(len(t_bin))[::-1]:
    if t_bin[i] == "1":
        ans = mul(graph, ans)
    graph = mul(graph, graph)

print(ans[0][0])
0