結果

問題 No.2443 特殊線形群の標準表現
ユーザー グミグミ
提出日時 2023-08-25 22:41:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 661 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 226,732 KB
最終ジャッジ日時 2024-06-06 17:22:52
合計ジャッジ時間 15,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
226,732 KB
testcase_01 AC 526 ms
43,996 KB
testcase_02 AC 528 ms
44,380 KB
testcase_03 AC 529 ms
43,992 KB
testcase_04 AC 534 ms
44,372 KB
testcase_05 AC 530 ms
43,996 KB
testcase_06 AC 532 ms
44,116 KB
testcase_07 AC 533 ms
44,124 KB
testcase_08 AC 527 ms
44,116 KB
testcase_09 AC 527 ms
44,112 KB
testcase_10 AC 525 ms
43,860 KB
testcase_11 AC 529 ms
44,228 KB
testcase_12 AC 533 ms
43,608 KB
testcase_13 AC 611 ms
44,252 KB
testcase_14 AC 1,331 ms
53,844 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
def main():
	n,b,q=map(int,input().split())
	arr = []
	for _ in range(n):
		a11,a12=map(int,input().split())
		a21,a22=map(int,input().split())
		a = np.matrix([[a11,a12],[a21,a22]])
		arr.append(a)
	
		mod_b = lambda x: x % b

	acc = [np.eye(2, dtype=int)]
	for i in range(n):
		a = arr[i] * acc[-1]
		a = mod_b(a)
		acc.append(a)

	for _ in range(q):
		l,r,x,y=map(int,input().split())
		a1 = acc[r]
		a2 = acc[l]
		inv_a2 = np.matrix([[a2[1,1],-a2[0,1]],[-a2[1,0],a2[0,0]]])
		a = a1 * inv_a2
		a = mod_b(a)
		zw = a * np.matrix([[x],[y]])
		z = zw[0,0]
		w = zw[1,0]
		
		z = z%b
		w = w%b
		print(z,w)

if __name__ == "__main__":
	main()
0