結果

問題 No.806 木を道に
ユーザー 双六双六
提出日時 2019-04-06 07:56:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,796 KB
最終ジャッジ日時 2024-06-23 12:56:22
合計ジャッジ時間 7,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 131 ms
16,004 KB
testcase_11 AC 124 ms
14,360 KB
testcase_12 AC 459 ms
26,860 KB
testcase_13 AC 335 ms
23,012 KB
testcase_14 AC 437 ms
26,124 KB
testcase_15 AC 465 ms
26,988 KB
testcase_16 AC 179 ms
17,004 KB
testcase_17 AC 398 ms
25,024 KB
testcase_18 AC 68 ms
12,416 KB
testcase_19 AC 143 ms
16,128 KB
testcase_20 AC 402 ms
24,900 KB
testcase_21 AC 229 ms
18,696 KB
testcase_22 AC 554 ms
31,552 KB
testcase_23 AC 548 ms
31,684 KB
testcase_24 AC 263 ms
21,580 KB
testcase_25 AC 383 ms
26,060 KB
testcase_26 AC 167 ms
16,940 KB
testcase_27 AC 495 ms
32,796 KB
testcase_28 AC 44 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class Graph(object):

    def __init__(self):
        self.graph = defaultdict(list)

    def __len__(self):
        return len(self.graph)

    def add_edge(self, a, b):
        self.graph[a].append(b)

    def get_nodes(self):
        return self.graph.keys()

g_a = Graph()

N = int(input())
for i in range(N - 1):
    a, b = list(map(int, input().split()))
    g_a.add_edge(a, b)
    g_a.add_edge(b, a)

ans = -2
for i in g_a.graph:
    if len(g_a.graph[i]) == 1:
        ans += 1

print(ans)
0