結果

問題 No.2443 特殊線形群の標準表現
ユーザー tailstails
提出日時 2023-08-25 21:55:41
言語 cLay
(20240714-1)
結果
AC  
実行時間 71 ms / 3,000 ms
コード長 360 bytes
コンパイル時間 3,404 ms
コンパイル使用メモリ 184,236 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-06 16:21:27
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 69 ms
10,880 KB
testcase_16 AC 71 ms
10,880 KB
testcase_17 AC 68 ms
10,880 KB
testcase_18 AC 70 ms
11,008 KB
testcase_19 AC 69 ms
10,880 KB
testcase_20 AC 61 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@b,@q;
modint().setmod(b);
Matrix<modint>m[n+1];
rep(i,n+1)m[i].changeSize(2,2);
m[0]=1;
rep(i,n){
	Matrix<modint>c(2,2);
	rd(c(2,2));
	m[i+1]=c*m[i];
}
rep(q){
	ll@l,@r;
	Matrix<modint>c(2,2);
	c[0][0]=m[l][1][1];
	c[0][1]=-m[l][0][1];
	c[1][0]=-m[l][1][0];
	c[1][1]=m[l][0][0];
	Matrix<modint>v(2,1);
	rd(v(2,1));
	v=m[r]*(c*v);
	wt(v[0][0],v[1][0]);
}
0