結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー MineMine
提出日時 2022-01-07 23:01:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 77,244 KB
最終ジャッジ日時 2024-11-14 09:07:02
合計ジャッジ時間 26,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,208 KB
testcase_01 AC 38 ms
53,604 KB
testcase_02 AC 43 ms
58,484 KB
testcase_03 AC 44 ms
60,748 KB
testcase_04 AC 119 ms
72,592 KB
testcase_05 AC 39 ms
54,108 KB
testcase_06 AC 38 ms
52,932 KB
testcase_07 AC 37 ms
53,420 KB
testcase_08 AC 447 ms
76,156 KB
testcase_09 AC 450 ms
76,132 KB
testcase_10 AC 449 ms
76,360 KB
testcase_11 AC 365 ms
76,256 KB
testcase_12 AC 479 ms
76,644 KB
testcase_13 AC 455 ms
76,272 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,518 ms
76,372 KB
testcase_21 AC 1,783 ms
76,852 KB
testcase_22 AC 364 ms
75,940 KB
testcase_23 TLE -
testcase_24 AC 291 ms
76,052 KB
testcase_25 AC 618 ms
76,228 KB
testcase_26 AC 239 ms
75,800 KB
testcase_27 AC 55 ms
64,756 KB
testcase_28 AC 63 ms
65,500 KB
testcase_29 AC 56 ms
65,576 KB
testcase_30 AC 358 ms
76,064 KB
testcase_31 AC 341 ms
75,968 KB
testcase_32 AC 335 ms
76,228 KB
testcase_33 AC 330 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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