結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-19 22:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,152 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 76,828 KB
最終ジャッジ日時 2024-06-10 10:01:33
合計ジャッジ時間 14,120 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,132 KB
testcase_01 AC 38 ms
53,164 KB
testcase_02 AC 42 ms
59,024 KB
testcase_03 AC 44 ms
60,092 KB
testcase_04 AC 90 ms
73,008 KB
testcase_05 AC 37 ms
52,068 KB
testcase_06 AC 38 ms
52,116 KB
testcase_07 AC 38 ms
52,568 KB
testcase_08 AC 246 ms
76,044 KB
testcase_09 AC 246 ms
75,968 KB
testcase_10 AC 246 ms
76,264 KB
testcase_11 AC 211 ms
76,532 KB
testcase_12 AC 266 ms
76,604 KB
testcase_13 AC 254 ms
76,516 KB
testcase_14 AC 1,065 ms
76,756 KB
testcase_15 AC 1,098 ms
76,828 KB
testcase_16 AC 1,111 ms
76,808 KB
testcase_17 AC 1,112 ms
76,716 KB
testcase_18 AC 1,152 ms
76,532 KB
testcase_19 AC 1,102 ms
76,700 KB
testcase_20 AC 753 ms
76,208 KB
testcase_21 AC 854 ms
76,416 KB
testcase_22 AC 206 ms
75,988 KB
testcase_23 AC 1,024 ms
76,308 KB
testcase_24 AC 166 ms
75,756 KB
testcase_25 AC 322 ms
75,996 KB
testcase_26 AC 146 ms
75,648 KB
testcase_27 AC 53 ms
64,904 KB
testcase_28 AC 58 ms
65,964 KB
testcase_29 AC 52 ms
63,576 KB
testcase_30 AC 207 ms
75,944 KB
testcase_31 AC 196 ms
76,156 KB
testcase_32 AC 196 ms
76,196 KB
testcase_33 AC 195 ms
76,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,t = map(int,input().split())
mod = 998244353

path = [[0]*n for i in range(n)]
edge = [[int(x) for x in input().split()] for i in range(m)]
for u,v in edge:
    path[u][v] = path[v][u] = 1



def calc(a,b):
    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


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


while t:
    if t%2:
        base = calc(base,path)
    path = calc(path,path)
    t //= 2

print(base[0][0])
0