結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー Eki1009Eki1009
提出日時 2021-11-19 21:49:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,183 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 79,536 KB
最終ジャッジ日時 2024-06-10 08:35:27
合計ジャッジ時間 13,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,024 KB
testcase_01 AC 33 ms
53,132 KB
testcase_02 AC 34 ms
53,536 KB
testcase_03 AC 40 ms
59,980 KB
testcase_04 AC 73 ms
68,476 KB
testcase_05 AC 36 ms
52,988 KB
testcase_06 AC 35 ms
52,400 KB
testcase_07 AC 32 ms
53,092 KB
testcase_08 AC 195 ms
73,524 KB
testcase_09 AC 198 ms
73,692 KB
testcase_10 AC 198 ms
73,376 KB
testcase_11 AC 155 ms
73,876 KB
testcase_12 AC 222 ms
76,156 KB
testcase_13 AC 212 ms
76,264 KB
testcase_14 AC 1,004 ms
79,536 KB
testcase_15 AC 1,019 ms
79,212 KB
testcase_16 AC 1,025 ms
79,312 KB
testcase_17 AC 1,039 ms
78,924 KB
testcase_18 AC 1,078 ms
78,916 KB
testcase_19 AC 1,183 ms
78,832 KB
testcase_20 AC 693 ms
77,840 KB
testcase_21 AC 810 ms
79,248 KB
testcase_22 AC 179 ms
75,832 KB
testcase_23 AC 918 ms
79,012 KB
testcase_24 AC 145 ms
75,548 KB
testcase_25 AC 285 ms
75,928 KB
testcase_26 AC 125 ms
76,012 KB
testcase_27 AC 45 ms
64,272 KB
testcase_28 AC 52 ms
69,552 KB
testcase_29 AC 43 ms
64,248 KB
testcase_30 AC 180 ms
75,964 KB
testcase_31 AC 173 ms
76,076 KB
testcase_32 AC 180 ms
76,216 KB
testcase_33 AC 173 ms
76,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n,m,t = map(int,input().split())
G = [[0]*n for _ in range(n)]
for _ in range(m):
    u,v = map(int,input().split())
    G[u][v] = G[v][u] = 1
def f(A,B):
    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]*B[k][j]%mod
                C[i][j] %= mod
    return C
def g(n):
    if n == 1:
        return G
    if n%2:
        return f(G,g(n-1))
    T = g(n//2)
    return f(T,T)
ans = g(t)[0][0]
print(ans)
0