結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー tktk_snsntktk_snsn
提出日時 2021-11-20 17:53:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 958 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 77,164 KB
最終ジャッジ日時 2024-06-11 20:10:30
合計ジャッジ時間 11,925 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
54,020 KB
testcase_01 AC 35 ms
52,988 KB
testcase_02 AC 38 ms
58,788 KB
testcase_03 AC 38 ms
61,224 KB
testcase_04 AC 60 ms
66,284 KB
testcase_05 AC 33 ms
52,468 KB
testcase_06 AC 32 ms
53,620 KB
testcase_07 AC 32 ms
52,464 KB
testcase_08 AC 202 ms
76,088 KB
testcase_09 AC 204 ms
76,312 KB
testcase_10 AC 213 ms
76,160 KB
testcase_11 AC 166 ms
73,880 KB
testcase_12 AC 216 ms
76,588 KB
testcase_13 AC 205 ms
76,244 KB
testcase_14 AC 881 ms
76,680 KB
testcase_15 AC 903 ms
76,496 KB
testcase_16 AC 918 ms
76,436 KB
testcase_17 AC 929 ms
76,868 KB
testcase_18 AC 958 ms
76,760 KB
testcase_19 AC 918 ms
76,860 KB
testcase_20 AC 645 ms
76,800 KB
testcase_21 AC 748 ms
76,640 KB
testcase_22 AC 170 ms
75,920 KB
testcase_23 AC 868 ms
77,164 KB
testcase_24 AC 136 ms
75,920 KB
testcase_25 AC 270 ms
75,980 KB
testcase_26 AC 119 ms
75,888 KB
testcase_27 AC 45 ms
64,960 KB
testcase_28 AC 54 ms
71,452 KB
testcase_29 AC 45 ms
64,860 KB
testcase_30 AC 165 ms
75,920 KB
testcase_31 AC 157 ms
76,000 KB
testcase_32 AC 154 ms
76,004 KB
testcase_33 AC 151 ms
76,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 998244353


def mat_mul(A, B):
    res = [[0] * len(B[0]) for _ in range(len(A))]
    for i in range(len(A)):
        for k in range(len(A[0])):
            for j in range(len(B[0])):
                res[i][j] += A[i][k] * B[k][j]
                res[i][j] %= mod
    return res


def mat_pow(A, n):
    size = len(A)
    res = [[0] * size for _ in range(size)]
    for i in range(size):
        res[i][i] = 1
    while n:
        if n & 1:
            res = mat_mul(res, A)
        A = mat_mul(A, A)
        n >>= 1
    return res


N, M, T = map(int, input().split())
A = [[0] * N for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    A[a][b] = 1
    A[b][a] = 1

B = mat_pow(A, T)
print(B[0][0])
0