結果

問題 No.1227 I hate ThREE
ユーザー tailstails
提出日時 2020-09-13 22:34:09
言語 cLay
(20240714-1)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 3,400 ms
コンパイル使用メモリ 177,364 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-07-05 14:03:00
合計ジャッジ時間 7,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
57,984 KB
testcase_01 AC 67 ms
57,984 KB
testcase_02 AC 67 ms
57,984 KB
testcase_03 AC 67 ms
58,240 KB
testcase_04 AC 66 ms
58,112 KB
testcase_05 AC 61 ms
58,240 KB
testcase_06 AC 56 ms
57,984 KB
testcase_07 AC 55 ms
57,984 KB
testcase_08 AC 64 ms
58,240 KB
testcase_09 AC 66 ms
58,112 KB
testcase_10 AC 62 ms
58,112 KB
testcase_11 AC 79 ms
57,984 KB
testcase_12 AC 80 ms
58,112 KB
testcase_13 AC 60 ms
58,112 KB
testcase_14 AC 63 ms
58,240 KB
testcase_15 AC 64 ms
58,112 KB
testcase_16 AC 70 ms
58,112 KB
testcase_17 AC 67 ms
58,112 KB
testcase_18 AC 73 ms
58,240 KB
testcase_19 AC 71 ms
58,112 KB
testcase_20 AC 74 ms
58,112 KB
testcase_21 AC 58 ms
57,984 KB
testcase_22 AC 71 ms
58,112 KB
testcase_23 AC 80 ms
58,240 KB
testcase_24 AC 81 ms
58,240 KB
testcase_25 AC 80 ms
58,112 KB
testcase_26 AC 79 ms
57,984 KB
testcase_27 AC 80 ms
58,112 KB
testcase_28 AC 79 ms
58,112 KB
testcase_29 AC 80 ms
58,240 KB
testcase_30 AC 80 ms
58,112 KB
testcase_31 AC 80 ms
58,112 KB
testcase_32 AC 81 ms
58,112 KB
testcase_33 AC 79 ms
58,112 KB
testcase_34 AC 79 ms
58,112 KB
testcase_35 AC 82 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

graph g;
ll n,c,d;
int a[2d3],b[2d3];
Mint e[2d3][7d3],z;
void f(int i,int p){
	e[i][3..d+2]=1;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			f(j,i);
			rep(k,d)e[i][k+3]*=e[j][k]+e[j][k+6];
		}
	}
}
{
	rd(n,c,(a,b)(n-1));
	g.setEdge(n+1,n-1,a,b);
	d=min(c,6d3);
	f(1,0);
	z=(c-d)*e[1][3d3];
	z+=e[1][3..d+2];
	wt(z);
}
0