結果

問題 No.806 木を道に
ユーザー るさるさ
提出日時 2019-04-07 15:32:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 878 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 52,136 KB
最終ジャッジ日時 2024-06-27 04:27:00
合計ジャッジ時間 10,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 186 ms
20,332 KB
testcase_11 AC 161 ms
18,188 KB
testcase_12 AC 712 ms
43,160 KB
testcase_13 AC 476 ms
34,952 KB
testcase_14 AC 674 ms
41,828 KB
testcase_15 AC 720 ms
43,668 KB
testcase_16 AC 242 ms
22,860 KB
testcase_17 AC 622 ms
39,508 KB
testcase_18 AC 83 ms
13,952 KB
testcase_19 AC 186 ms
20,188 KB
testcase_20 AC 614 ms
39,536 KB
testcase_21 AC 330 ms
26,824 KB
testcase_22 AC 878 ms
51,376 KB
testcase_23 AC 873 ms
51,276 KB
testcase_24 AC 366 ms
31,972 KB
testcase_25 AC 540 ms
41,576 KB
testcase_26 AC 218 ms
23,060 KB
testcase_27 AC 701 ms
52,136 KB
testcase_28 AC 46 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Node:
	def __init__(self):
		self.edge=[]
		self.degree=0
	
	def add_edge(self,new_edge):
		self.edge.append(new_edge)
		self.degree+=1


class Edge:
	def __init__(self,node_a,node_b):
		node_a.add_edge(self)
		node_b.add_edge(self)
		self.node=(node_a,node_b)


class Graph:
	def __init__(self):
		self.node={}
		self.edge=[]
	
	def add_edge(self,new_edge):
		if not new_edge[0] in self.node:
			self.node[new_edge[0]]=Node()
		if not new_edge[1] in self.node:
			self.node[new_edge[1]]=Node()
		self.edge.append(Edge(self.node[new_edge[0]],self.node[new_edge[1]]))


n=int(input())
g=Graph()
for i in range(n-1):
    g.add_edge(list(map(int,input().split())))

c=-2
for i in g.node:
    if g.node[i].degree==1:
        c+=1

print(c)
0