結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー 👑 rin204rin204
提出日時 2022-01-23 07:24:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 643 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 100,788 KB
最終ジャッジ日時 2024-11-29 01:53:50
合計ジャッジ時間 24,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,640 KB
testcase_01 AC 40 ms
54,240 KB
testcase_02 AC 43 ms
55,368 KB
testcase_03 AC 48 ms
62,576 KB
testcase_04 AC 145 ms
77,436 KB
testcase_05 AC 44 ms
53,876 KB
testcase_06 AC 38 ms
53,640 KB
testcase_07 AC 39 ms
53,868 KB
testcase_08 AC 306 ms
79,188 KB
testcase_09 AC 287 ms
78,796 KB
testcase_10 AC 308 ms
79,040 KB
testcase_11 AC 317 ms
79,560 KB
testcase_12 AC 400 ms
80,248 KB
testcase_13 AC 395 ms
80,248 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,891 ms
97,752 KB
testcase_18 AC 1,770 ms
96,032 KB
testcase_19 AC 1,851 ms
97,556 KB
testcase_20 AC 1,512 ms
94,268 KB
testcase_21 AC 1,830 ms
97,320 KB
testcase_22 AC 362 ms
78,536 KB
testcase_23 AC 1,917 ms
98,288 KB
testcase_24 AC 249 ms
78,108 KB
testcase_25 AC 561 ms
81,308 KB
testcase_26 AC 232 ms
77,716 KB
testcase_27 AC 66 ms
72,040 KB
testcase_28 AC 69 ms
74,836 KB
testcase_29 AC 64 ms
72,608 KB
testcase_30 AC 359 ms
78,424 KB
testcase_31 AC 367 ms
78,636 KB
testcase_32 AC 338 ms
78,692 KB
testcase_33 AC 320 ms
78,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

MOD = 998244353

n, m, T = map(int, input().split())
A = [[0] * n for _ in range(n)]
B = [0] * n
B[0] = 1
for _ in range(m):
    s, t = map(int, input().split())
    A[s][t] = 1
    A[t][s] = 1
    
while T:
    if T & 1:
        C = [0] * n
        for i in range(n):
            for j in range(n):
                C[i] += A[i][j] * B[j]
            C[i] %= MOD
        B = C.copy()
    T >>= 1
    C = [[0] * n for _ in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                C[i][j] += A[i][k] * A[k][j]
            C[i][j] %= MOD
    A = deepcopy(C)
print(B[0])
0