結果

問題 No.2711 Connecting Lights
ユーザー tailstails
提出日時 2024-04-01 11:33:37
言語 cLay
(20240104-1)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 6,241 ms
コンパイル使用メモリ 206,056 KB
実行使用メモリ 7,488 KB
最終ジャッジ日時 2024-04-01 11:33:44
合計ジャッジ時間 7,333 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,488 KB
testcase_01 AC 2 ms
7,488 KB
testcase_02 AC 2 ms
7,488 KB
testcase_03 AC 2 ms
7,488 KB
testcase_04 AC 3 ms
7,488 KB
testcase_05 AC 3 ms
7,488 KB
testcase_06 AC 2 ms
7,488 KB
testcase_07 AC 2 ms
7,488 KB
testcase_08 AC 2 ms
7,488 KB
testcase_09 AC 2 ms
7,488 KB
testcase_10 AC 2 ms
7,488 KB
testcase_11 AC 3 ms
7,488 KB
testcase_12 AC 2 ms
7,488 KB
testcase_13 AC 2 ms
7,488 KB
testcase_14 AC 2 ms
7,488 KB
testcase_15 AC 2 ms
7,488 KB
testcase_16 AC 2 ms
7,488 KB
testcase_17 AC 2 ms
7,488 KB
testcase_18 AC 3 ms
7,488 KB
testcase_19 AC 3 ms
7,488 KB
testcase_20 AC 3 ms
7,488 KB
testcase_21 AC 2 ms
7,488 KB
testcase_22 AC 3 ms
7,488 KB
testcase_23 AC 3 ms
7,488 KB
testcase_24 AC 2 ms
7,488 KB
testcase_25 AC 2 ms
7,488 KB
testcase_26 AC 3 ms
7,488 KB
testcase_27 AC 3 ms
7,488 KB
testcase_28 AC 2 ms
7,488 KB
testcase_29 AC 2 ms
7,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
Comb<Mint>c;
ll@n,@m,@k;
if(m==1){
	wt(1<<n);
	exit(0);
}
Matrix<Mint>a(n+1-k,n+1-k),v(n+1-k,1),r;
rep(y,n+1-k){
	rep(x,n+1-k){
		a[y][x]=sum[i,0,y+1](c.C(k+x,k+i)*c.C(n-(k+x),y-i));
	}
	v[y][0]=c.C(n,k+y);
}
a**=m-1;
r=a*v;
wt(sum[i,0,n+1-k](r[0][i]));
0