結果

問題 No.2443 特殊線形群の標準表現
ユーザー hiro1729hiro1729
提出日時 2023-08-27 18:58:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,853 ms / 3,000 ms
コード長 738 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 94,720 KB
最終ジャッジ日時 2024-06-08 14:43:21
合計ジャッジ時間 19,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 50 ms
11,648 KB
testcase_14 AC 259 ms
19,072 KB
testcase_15 AC 2,818 ms
94,720 KB
testcase_16 AC 2,807 ms
94,592 KB
testcase_17 AC 2,853 ms
94,720 KB
testcase_18 AC 2,838 ms
94,592 KB
testcase_19 AC 2,795 ms
94,720 KB
testcase_20 AC 2,449 ms
89,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, md, q = map(int, input().split())
a = [[list(map(int, input().split())), list(map(int, input().split()))] for _ in range(n)]
b = [[[1, 0], [0, 1]]]
for i in a[::-1]:
	b.append([[b[-1][0][0] * i[0][0] + b[-1][0][1] * i[1][0], b[-1][0][0] * i[0][1] + b[-1][0][1] * i[1][1]], [b[-1][1][0] * i[0][0] + b[-1][1][1] * i[1][0], b[-1][1][0] * i[0][1] + b[-1][1][1] * i[1][1]]])
	for i in range(2):
		for j in range(2):
			b[-1][i][j] %= md * 2
for _ in range(q):
	l, r, x, y = map(int, input().split())
	p = b[n - r]
	q = b[n - l]
	c = p[1][1]
	d = -p[0][1]
	e = -p[1][0]
	f = p[0][0]
	g = q[0][0]
	h = q[0][1]
	i = q[1][0]
	j = q[1][1]
	print(((c * g + d * i) * x + (c * h + d * j) * y) % md, ((e * g + f * i) * x + (e * h + f * j) * y) % md)
0