結果

問題 No.806 木を道に
ユーザー noriocnorioc
提出日時 2024-09-03 01:05:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 97,512 KB
最終ジャッジ日時 2024-09-03 01:05:38
合計ジャッジ時間 5,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,880 KB
testcase_01 AC 40 ms
54,472 KB
testcase_02 AC 43 ms
55,068 KB
testcase_03 AC 41 ms
54,460 KB
testcase_04 AC 40 ms
55,508 KB
testcase_05 AC 41 ms
54,836 KB
testcase_06 AC 42 ms
54,420 KB
testcase_07 AC 41 ms
55,240 KB
testcase_08 AC 44 ms
54,228 KB
testcase_09 AC 41 ms
55,228 KB
testcase_10 AC 106 ms
79,744 KB
testcase_11 AC 106 ms
79,432 KB
testcase_12 AC 180 ms
90,676 KB
testcase_13 AC 148 ms
86,944 KB
testcase_14 AC 176 ms
89,544 KB
testcase_15 AC 180 ms
90,812 KB
testcase_16 AC 107 ms
81,084 KB
testcase_17 AC 163 ms
89,284 KB
testcase_18 AC 90 ms
77,588 KB
testcase_19 AC 111 ms
80,124 KB
testcase_20 AC 164 ms
89,332 KB
testcase_21 AC 125 ms
85,456 KB
testcase_22 AC 196 ms
93,700 KB
testcase_23 AC 192 ms
93,976 KB
testcase_24 AC 112 ms
85,468 KB
testcase_25 AC 136 ms
90,644 KB
testcase_26 AC 95 ms
81,900 KB
testcase_27 AC 188 ms
97,512 KB
testcase_28 AC 75 ms
74,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict

N = int(input())
adj = defaultdict(list)
degs = [0] * N
for _ in range(N-1):
    a, b = map(lambda x: int(x)-1, input().split())
    adj[a].append(b)
    adj[b].append(a)
    degs[a] += 1
    degs[b] += 1

ans = 0
for i in range(N):
    if degs[i] > 2:
        ans += degs[i] - 2

print(ans)
0