結果

問題 No.806 木を道に
ユーザー tails1434tails1434
提出日時 2020-01-08 21:26:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-11-23 03:08:24
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 41 ms
53,248 KB
testcase_05 AC 42 ms
54,144 KB
testcase_06 AC 45 ms
53,760 KB
testcase_07 AC 39 ms
53,888 KB
testcase_08 AC 39 ms
53,248 KB
testcase_09 AC 39 ms
53,376 KB
testcase_10 AC 93 ms
78,592 KB
testcase_11 AC 91 ms
78,220 KB
testcase_12 AC 152 ms
84,992 KB
testcase_13 AC 127 ms
83,712 KB
testcase_14 AC 146 ms
84,948 KB
testcase_15 AC 155 ms
84,736 KB
testcase_16 AC 102 ms
79,740 KB
testcase_17 AC 146 ms
84,736 KB
testcase_18 AC 83 ms
76,928 KB
testcase_19 AC 96 ms
79,192 KB
testcase_20 AC 148 ms
84,872 KB
testcase_21 AC 114 ms
82,304 KB
testcase_22 AC 179 ms
85,888 KB
testcase_23 AC 174 ms
85,888 KB
testcase_24 AC 109 ms
82,304 KB
testcase_25 AC 126 ms
85,228 KB
testcase_26 AC 89 ms
79,744 KB
testcase_27 AC 137 ms
85,232 KB
testcase_28 AC 69 ms
71,296 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