結果

問題 No.763 Noelちゃんと木遊び
ユーザー daichan132daichan132
提出日時 2022-03-16 14:26:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-09-24 13:17:35
合計ジャッジ時間 6,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
50,048 KB
testcase_01 AC 114 ms
16,512 KB
testcase_02 AC 247 ms
24,192 KB
testcase_03 AC 180 ms
19,968 KB
testcase_04 AC 132 ms
17,408 KB
testcase_05 AC 169 ms
19,840 KB
testcase_06 AC 305 ms
27,136 KB
testcase_07 AC 301 ms
26,496 KB
testcase_08 AC 181 ms
20,352 KB
testcase_09 AC 127 ms
17,152 KB
testcase_10 AC 65 ms
13,184 KB
testcase_11 AC 323 ms
27,392 KB
testcase_12 AC 277 ms
25,600 KB
testcase_13 AC 270 ms
25,344 KB
testcase_14 AC 245 ms
23,808 KB
testcase_15 AC 171 ms
19,840 KB
testcase_16 AC 51 ms
12,288 KB
testcase_17 AC 176 ms
19,968 KB
testcase_18 AC 320 ms
27,136 KB
testcase_19 AC 279 ms
25,856 KB
testcase_20 AC 296 ms
25,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
input = sys.stdin.readline


def dfs(v, p, used: list, graph):
    paintable = True
    for n in graph[v]:
        if n == p:
            continue
        dfs(n, v, used, graph)
        if used[n]:
            paintable = False

    if paintable:
        used[v] = True


N = int(input())
graph = [[] for i in range(N)]
for i in range(N - 1):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    graph[a].append(b)
    graph[b].append(a)

used = [False] * N
dfs(0, -1, used, graph)

print(sum(used))
0