結果

問題 No.806 木を道に
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-18 18:51:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 94,404 KB
最終ジャッジ日時 2024-09-18 18:51:39
合計ジャッジ時間 4,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 33 ms
52,480 KB
testcase_03 AC 31 ms
52,012 KB
testcase_04 AC 31 ms
51,968 KB
testcase_05 AC 33 ms
52,480 KB
testcase_06 AC 32 ms
52,608 KB
testcase_07 AC 31 ms
51,968 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 32 ms
51,968 KB
testcase_10 AC 86 ms
78,048 KB
testcase_11 AC 86 ms
78,096 KB
testcase_12 AC 161 ms
87,288 KB
testcase_13 AC 129 ms
83,972 KB
testcase_14 AC 155 ms
86,264 KB
testcase_15 AC 170 ms
87,156 KB
testcase_16 AC 105 ms
80,320 KB
testcase_17 AC 150 ms
85,416 KB
testcase_18 AC 80 ms
77,312 KB
testcase_19 AC 116 ms
78,464 KB
testcase_20 AC 146 ms
85,612 KB
testcase_21 AC 113 ms
81,436 KB
testcase_22 AC 196 ms
88,832 KB
testcase_23 AC 208 ms
89,196 KB
testcase_24 AC 115 ms
85,464 KB
testcase_25 AC 134 ms
91,392 KB
testcase_26 AC 88 ms
80,572 KB
testcase_27 AC 164 ms
94,404 KB
testcase_28 AC 64 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
e=[[] for i in range(n)]
for i in range(n-1):
	a,b=map(int,input().split())
	a-=1
	b-=1
	e[a]+=[b]
	e[b]+=[a]
v=[0]*n
f=[1]*n
q=[0]
while len(q)>0:
	s=q[-1]
	if v[s]==0:
		v[s]=1
		for t in e[s]:
			if v[t]==0:
				q+=[t]
				f[s]=0
	else:
		q.pop()
print(sum(f)+(len(e[0])==1)-2)
0