結果

問題 No.2874 Gunegune Tree
ユーザー tailstails
提出日時 2024-09-06 23:15:54
言語 cLay
(20240714-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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 51 ms
6,940 KB
testcase_04 AC 294 ms
6,944 KB
testcase_05 AC 107 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 662 ms
6,940 KB
testcase_08 AC 316 ms
6,944 KB
testcase_09 AC 31 ms
6,944 KB
testcase_10 AC 585 ms
6,944 KB
testcase_11 AC 447 ms
6,944 KB
testcase_12 AC 138 ms
6,940 KB
testcase_13 AC 686 ms
6,940 KB
testcase_14 AC 545 ms
6,940 KB
testcase_15 AC 92 ms
6,940 KB
testcase_16 AC 714 ms
6,944 KB
testcase_17 AC 78 ms
6,944 KB
testcase_18 AC 85 ms
6,940 KB
testcase_19 AC 57 ms
6,944 KB
testcase_20 AC 74 ms
6,940 KB
testcase_21 AC 223 ms
6,940 KB
testcase_22 AC 335 ms
6,940 KB
testcase_23 AC 210 ms
6,944 KB
testcase_24 AC 277 ms
6,940 KB
testcase_25 AC 477 ms
6,940 KB
testcase_26 AC 292 ms
6,944 KB
testcase_27 AC 677 ms
6,940 KB
testcase_28 AC 156 ms
6,940 KB
testcase_29 AC 396 ms
6,940 KB
testcase_30 AC 311 ms
6,940 KB
testcase_31 AC 232 ms
6,944 KB
testcase_32 AC 734 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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