結果

問題 No.763 Noelちゃんと木遊び
ユーザー %20%20
提出日時 2018-12-11 03:34:52
言語 cLay
(20240714-1)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 178,184 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-07-05 13:13:44
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,152 KB
testcase_01 AC 14 ms
10,368 KB
testcase_02 AC 27 ms
13,184 KB
testcase_03 AC 18 ms
11,392 KB
testcase_04 AC 15 ms
10,624 KB
testcase_05 AC 20 ms
11,392 KB
testcase_06 AC 32 ms
14,208 KB
testcase_07 AC 32 ms
13,952 KB
testcase_08 AC 20 ms
11,776 KB
testcase_09 AC 16 ms
10,624 KB
testcase_10 AC 9 ms
9,088 KB
testcase_11 AC 32 ms
14,208 KB
testcase_12 AC 30 ms
13,696 KB
testcase_13 AC 27 ms
13,440 KB
testcase_14 AC 27 ms
12,928 KB
testcase_15 AC 19 ms
11,520 KB
testcase_16 AC 8 ms
8,704 KB
testcase_17 AC 21 ms
11,392 KB
testcase_18 AC 35 ms
14,080 KB
testcase_19 AC 32 ms
13,696 KB
testcase_20 AC 29 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,r,u[2d5];
vector<ll>v[2d5];
ll f(ll j,ll p){
	ll a=1;
	for(ll x:v[j])a&=x-p?f(x,j):1;
	r+=a;
	return!a;
}

{
	rd(n,u(n*2-2));
	rep(i,n*2-2)v[u[i]].push_back(u[i^1]);
	f(1,1);
	wt(r);
}
0