結果

問題 No.806 木を道に
ユーザー tamatotamato
提出日時 2020-02-27 09:14:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 88,568 KB
最終ジャッジ日時 2024-10-13 15:45:03
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,356 KB
testcase_01 AC 39 ms
53,568 KB
testcase_02 AC 40 ms
53,756 KB
testcase_03 AC 39 ms
54,088 KB
testcase_04 AC 42 ms
53,788 KB
testcase_05 AC 41 ms
53,960 KB
testcase_06 AC 42 ms
55,220 KB
testcase_07 AC 39 ms
54,356 KB
testcase_08 AC 39 ms
55,228 KB
testcase_09 AC 39 ms
53,704 KB
testcase_10 AC 70 ms
78,344 KB
testcase_11 AC 72 ms
78,064 KB
testcase_12 AC 113 ms
84,456 KB
testcase_13 AC 95 ms
82,996 KB
testcase_14 AC 107 ms
84,240 KB
testcase_15 AC 117 ms
84,484 KB
testcase_16 AC 76 ms
78,864 KB
testcase_17 AC 103 ms
84,236 KB
testcase_18 AC 59 ms
69,884 KB
testcase_19 AC 71 ms
78,360 KB
testcase_20 AC 104 ms
84,212 KB
testcase_21 AC 80 ms
79,620 KB
testcase_22 AC 123 ms
85,464 KB
testcase_23 AC 116 ms
85,148 KB
testcase_24 AC 73 ms
79,472 KB
testcase_25 AC 82 ms
84,104 KB
testcase_26 AC 64 ms
79,608 KB
testcase_27 AC 94 ms
88,568 KB
testcase_28 AC 49 ms
64,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

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

    ans = -2
    for v in range(1, N+1):
        ans += (len(adj[v]) == 1)
    print(ans)


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