結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー MineMine
提出日時 2022-01-07 23:18:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 77,024 KB
最終ジャッジ日時 2024-11-14 09:15:16
合計ジャッジ時間 25,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,420 KB
testcase_01 AC 36 ms
52,952 KB
testcase_02 AC 39 ms
58,976 KB
testcase_03 AC 43 ms
61,480 KB
testcase_04 AC 111 ms
72,668 KB
testcase_05 AC 36 ms
54,004 KB
testcase_06 AC 36 ms
53,008 KB
testcase_07 AC 37 ms
53,500 KB
testcase_08 AC 444 ms
76,064 KB
testcase_09 AC 438 ms
76,236 KB
testcase_10 AC 443 ms
76,124 KB
testcase_11 AC 357 ms
76,384 KB
testcase_12 AC 470 ms
75,988 KB
testcase_13 AC 449 ms
76,340 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,472 ms
76,472 KB
testcase_21 AC 1,719 ms
76,652 KB
testcase_22 AC 348 ms
75,968 KB
testcase_23 AC 1,981 ms
76,844 KB
testcase_24 AC 279 ms
75,740 KB
testcase_25 AC 595 ms
75,924 KB
testcase_26 AC 226 ms
75,780 KB
testcase_27 AC 49 ms
64,480 KB
testcase_28 AC 58 ms
66,128 KB
testcase_29 AC 52 ms
65,192 KB
testcase_30 AC 345 ms
75,864 KB
testcase_31 AC 324 ms
75,836 KB
testcase_32 AC 321 ms
76,212 KB
testcase_33 AC 314 ms
76,128 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