結果

問題 No.763 Noelちゃんと木遊び
ユーザー kept1994kept1994
提出日時 2022-05-05 18:03:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 180,480 KB
最終ジャッジ日時 2024-07-04 19:34:22
合計ジャッジ時間 5,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
180,480 KB
testcase_01 AC 143 ms
80,772 KB
testcase_02 AC 236 ms
86,528 KB
testcase_03 AC 176 ms
83,268 KB
testcase_04 AC 162 ms
81,920 KB
testcase_05 AC 178 ms
83,200 KB
testcase_06 AC 258 ms
89,036 KB
testcase_07 AC 243 ms
88,104 KB
testcase_08 AC 176 ms
83,884 KB
testcase_09 AC 153 ms
81,920 KB
testcase_10 AC 115 ms
78,720 KB
testcase_11 AC 248 ms
88,704 KB
testcase_12 AC 236 ms
87,416 KB
testcase_13 AC 232 ms
87,296 KB
testcase_14 AC 216 ms
86,272 KB
testcase_15 AC 156 ms
83,144 KB
testcase_16 AC 104 ms
77,732 KB
testcase_17 AC 168 ms
83,584 KB
testcase_18 AC 262 ms
88,496 KB
testcase_19 AC 243 ms
88,044 KB
testcase_20 AC 249 ms
87,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
sys.setrecursionlimit(10 ** 9)

def main():
    N = int(input())
    G = [[] for _ in range(N)]
    dp = [0] * N
    for _ in range(N - 1):
        u, v = map(int, input().split())
        G[u - 1].append(v - 1)
        G[v - 1].append(u - 1)
    
    def dfs(now: int, pre: int):
        selectable = True
        for next in G[now]:
            if next == pre:
                continue
            dfs(next, now)
            if dp[next]:
                selectable = False
        if selectable:
            dp[now] = 1
        return

    dfs(0, -1)
    print(sum(dp))
    return

if __name__ == '__main__':
    main()
0