結果
問題 | No.2443 特殊線形群の標準表現 |
ユーザー | 👑 Kazun |
提出日時 | 2023-08-25 22:34:07 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,047 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 139,308 KB |
最終ジャッジ日時 | 2024-06-06 17:12:42 |
合計ジャッジ時間 | 5,120 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,196 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
def mul(A, B, mod): C = [[0,0], [0,0]] for i in [0, 1]: for j in [0, 1]: for k in [0, 1]: C[i][j] += A[i][k] * B[k][j] C[i][j] %= mod return C def inv(A): [[a, b], [c, d]] = A return [[d, -b], [-c, a]] def solve(): N, B, Q = map(int, input().split()) A = [[None, None] for _ in range(N+1)] A[0] = [[1,0], [0,1]] for i in range(1, N+1): A[i][0] = list(map(int, input().split())) A[i][1] = list(map(int ,input().split())) P = [None] * (N+1); P[0] = A[0] for i in range(1, N+1): P[i] = mul(A[i], P[i-1], B) Ans = [None] * Q for q in range(Q): L, R, x, y =map(int, input().split()) [[s, t], [u, v]] = mul(inv(P[L]), P[R], B) z = (s * x + t * y) % B w = (u * x + v * y) % B Ans[q] = (z,w) return Ans #================================================== import sys input=sys.stdin.readline write=sys.stdout.write write("\n".join(map(lambda t: f"{t[0]} {t[1]}\n", solve())))