結果

問題 No.806 木を道に
ユーザー tails1434tails1434
提出日時 2020-01-08 21:26:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 782 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 86,308 KB
最終ジャッジ日時 2024-05-02 13:03:56
合計ジャッジ時間 5,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,332 KB
testcase_01 AC 43 ms
55,500 KB
testcase_02 AC 44 ms
54,744 KB
testcase_03 AC 44 ms
54,544 KB
testcase_04 AC 43 ms
53,832 KB
testcase_05 AC 45 ms
54,616 KB
testcase_06 AC 45 ms
54,616 KB
testcase_07 AC 43 ms
54,440 KB
testcase_08 AC 43 ms
54,308 KB
testcase_09 AC 43 ms
54,728 KB
testcase_10 AC 98 ms
78,540 KB
testcase_11 AC 96 ms
78,076 KB
testcase_12 AC 164 ms
85,144 KB
testcase_13 AC 139 ms
84,156 KB
testcase_14 AC 157 ms
85,064 KB
testcase_15 AC 164 ms
85,164 KB
testcase_16 AC 105 ms
79,768 KB
testcase_17 AC 157 ms
84,908 KB
testcase_18 AC 89 ms
76,836 KB
testcase_19 AC 101 ms
79,000 KB
testcase_20 AC 152 ms
85,100 KB
testcase_21 AC 119 ms
82,004 KB
testcase_22 AC 181 ms
86,004 KB
testcase_23 AC 179 ms
86,308 KB
testcase_24 AC 112 ms
82,416 KB
testcase_25 AC 132 ms
85,360 KB
testcase_26 AC 95 ms
80,260 KB
testcase_27 AC 145 ms
85,108 KB
testcase_28 AC 71 ms
72,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    N = int(input())
    d = defaultdict(int)
    for _ in range(N-1):
        a, b = map(int, input().split())
        d[a] += 1
        d[b] += 1

    ans = 0
    for i in d.values():
        ans += max(i-2,0)

    print(ans)



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