結果
問題 | No.1750 ラムドスウイルスの感染拡大-hard |
ユーザー | H3PO4 |
提出日時 | 2021-11-19 21:43:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 524 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 58,852 KB |
最終ジャッジ日時 | 2024-06-10 08:23:24 |
合計ジャッジ時間 | 18,021 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 450 ms
50,552 KB |
testcase_01 | AC | 447 ms
43,728 KB |
testcase_02 | AC | 449 ms
43,460 KB |
testcase_03 | AC | 483 ms
43,860 KB |
testcase_04 | AC | 606 ms
43,580 KB |
testcase_05 | AC | 445 ms
43,580 KB |
testcase_06 | AC | 448 ms
43,860 KB |
testcase_07 | AC | 458 ms
43,728 KB |
testcase_08 | AC | 1,211 ms
43,580 KB |
testcase_09 | AC | 1,155 ms
43,608 KB |
testcase_10 | AC | 1,266 ms
43,740 KB |
testcase_11 | AC | 1,274 ms
43,588 KB |
testcase_12 | AC | 1,590 ms
43,604 KB |
testcase_13 | AC | 1,480 ms
43,472 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
import numpy as np N, M, T = map(int, input().split()) MOD = 998244353 def pow_matrix_mod(x, n, mod=MOD): if not n: return np.eye(len(x), dtype=object) if n % 2 == 0: return pow_matrix_mod(x @ x % mod, n // 2) % mod else: return x @ pow_matrix_mod(x @ x % mod, (n - 1) // 2) % mod matr = [[0] * N for _ in range(N)] for _ in range(M): s, t = map(int, input().split()) matr[s][t] = 1 matr[t][s] = 1 matr = np.array(matr, dtype=object) print(pow_matrix_mod(matr, T)[0, 0])