結果
問題 | No.2444 一次変換と体積 |
ユーザー | Nikkuniku029 |
提出日時 | 2023-08-25 23:03:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 969 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 43,844 KB |
最終ジャッジ日時 | 2024-06-06 17:49:28 |
合計ジャッジ時間 | 12,746 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 481 ms
43,368 KB |
testcase_01 | AC | 473 ms
43,328 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 477 ms
43,340 KB |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
ソースコード
import numpy as np def modinv(a: int, m: int) -> int: ''' モジュラ逆元 ax mod m =1の解x=a^(-1)を返す Parameters ---------- a:int m:int ''' x, y, u, v = 1, 0, 0, 1 M = m while m > 0: k = a//m x -= k*u y -= k*v x, u = u, x y, v = v, y a, m = m, a % m assert a == 1, "a and m aren't relatively prime numbers" if x < 0: x += M return x def mat_mul(a, b): """ a: 行列(2次元配列)I*J b: 行列(2次元配列)J*K """ I, J, K = len(a), len(b[0]), len(b) c = [[0] * J for _ in range(I)] for i in range(I): for j in range(J): for k in range(K): c[i][j] += a[i][k] * b[k][j] return c N, B = map(int, input().split()) A = [list(map(int, input().split())) for _ in range(3)] mat = np.matrix(A) det = np.linalg.det(mat) detn = pow(int(det), N, B) ans = modinv(detn, B) print(ans)