結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-20 11:13:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,267 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-06-11 02:01:10
合計ジャッジ時間 17,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 55 ms
60,928 KB
testcase_04 AC 144 ms
76,856 KB
testcase_05 AC 45 ms
52,096 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 314 ms
77,312 KB
testcase_09 AC 309 ms
77,032 KB
testcase_10 AC 312 ms
77,200 KB
testcase_11 AC 284 ms
77,536 KB
testcase_12 AC 296 ms
77,144 KB
testcase_13 AC 305 ms
77,312 KB
testcase_14 AC 1,243 ms
82,816 KB
testcase_15 AC 1,243 ms
82,432 KB
testcase_16 AC 1,251 ms
82,404 KB
testcase_17 AC 1,267 ms
82,304 KB
testcase_18 AC 1,254 ms
81,484 KB
testcase_19 AC 1,242 ms
81,768 KB
testcase_20 AC 941 ms
81,248 KB
testcase_21 AC 1,056 ms
81,056 KB
testcase_22 AC 294 ms
77,472 KB
testcase_23 AC 1,122 ms
81,688 KB
testcase_24 AC 262 ms
77,232 KB
testcase_25 AC 405 ms
78,652 KB
testcase_26 AC 212 ms
76,692 KB
testcase_27 AC 83 ms
76,212 KB
testcase_28 AC 94 ms
76,288 KB
testcase_29 AC 86 ms
76,032 KB
testcase_30 AC 276 ms
77,396 KB
testcase_31 AC 291 ms
77,764 KB
testcase_32 AC 286 ms
77,280 KB
testcase_33 AC 275 ms
77,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,T = map(int, input().split())
l = [[0] * n for _ in range(n)]
for i in range(m):
    s,t = map(int, input().split())
    l[s][t]=1
    l[t][s]=1
rui = [[0] * n]
rui[0][0] = 1
mod = 998244353
def cal(mat_a, mat_b,r,c):
    new_mat = [[0]*c for _ in range(r)]
    for i in range(r):
        for j in range(c):
            new_mat[i][j] = sum(mat_a[i][w]*mat_b[w][j] % mod for w in range(c)) % mod
    return new_mat

while T:
    if T & 1:
        rui = cal(rui,l,1,n)
    l = cal(l,l,n,n)
    T >>= 1

print(rui[0][0])
0