結果

問題 No.763 Noelちゃんと木遊び
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-11-21 09:26:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 572 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,848 KB
最終ジャッジ日時 2024-06-22 12:41:22
合計ジャッジ時間 10,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 482 ms
46,848 KB
testcase_01 AC 195 ms
16,640 KB
testcase_02 AC 454 ms
24,192 KB
testcase_03 AC 304 ms
19,968 KB
testcase_04 AC 214 ms
17,280 KB
testcase_05 AC 294 ms
19,840 KB
testcase_06 AC 553 ms
27,008 KB
testcase_07 AC 552 ms
26,496 KB
testcase_08 AC 318 ms
20,352 KB
testcase_09 AC 218 ms
17,280 KB
testcase_10 AC 100 ms
13,184 KB
testcase_11 AC 572 ms
27,648 KB
testcase_12 AC 496 ms
25,472 KB
testcase_13 AC 471 ms
25,216 KB
testcase_14 AC 425 ms
23,680 KB
testcase_15 AC 304 ms
19,840 KB
testcase_16 AC 73 ms
12,288 KB
testcase_17 AC 308 ms
19,968 KB
testcase_18 AC 562 ms
27,136 KB
testcase_19 AC 498 ms
25,728 KB
testcase_20 AC 507 ms
25,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
n = int(input())
G = [[] for i in range(n)]
for _ in range(n - 1):
	u, v = map(int, input().split())
	u -= 1; v -= 1
	G[u].append(v)
	G[v].append(u)
def dfs(now, prev):
	f = False
	for nex in G[now]:
		if nex == prev: continue
		dfs(nex, now)
		if used[nex]: f = True
	if not f: used[now] = 1
used = [0] * n
dfs(0, -1)
print(sum(used))
0