結果

問題 No.2874 Gunegune Tree
ユーザー tailstails
提出日時 2024-09-06 23:15:54
言語 cLay
(20241019-1)
結果
AC  
実行時間 734 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 3,666 ms
コンパイル使用メモリ 180,224 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 23:17:04
合計ジャッジ時間 13,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
ll@n;
Mint d[5],e[],f[],g[];
d[1..3]=Mint(1)/5;
e[0..4]=Mint(1)/5;
rep(n-1){
	rep(i,5){
		f[i]=d[i];
		g[i]=e[i];
	}
	d[0]=f[0]/2+f[1]/3;
	d[1]=(f[0]+g[0])/2+(f[1]+g[1])/3+(f[2]+g[2])/3;
	d[2]=(f[1]+g[1])/3+(f[2]+g[2])/3+(f[3]+g[3])/3;
	d[3]=(f[2]+g[2])/3+(f[3]+g[3])/3+(f[4]+g[4])/2;
	d[4]=f[3]/3+f[4]/2;
	e[0]=g[0]/2+g[1]/3;
	e[1]=g[0]/2+g[1]/3+g[2]/3;
	e[2]=g[1]/3+g[2]/3+g[3]/3;
	e[3]=g[2]/3+g[3]/3+g[4]/2;
	e[4]=g[3]/3+g[4]/2;
}
wt(sum(d(5)));
0