結果

問題 No.806 木を道に
ユーザー stngstng
提出日時 2022-07-02 17:46:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 89,160 KB
最終ジャッジ日時 2024-05-05 14:51:00
合計ジャッジ時間 5,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 46 ms
53,632 KB
testcase_04 AC 46 ms
53,248 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 45 ms
54,016 KB
testcase_07 AC 43 ms
53,504 KB
testcase_08 AC 43 ms
53,376 KB
testcase_09 AC 43 ms
53,504 KB
testcase_10 AC 103 ms
78,464 KB
testcase_11 AC 98 ms
78,336 KB
testcase_12 AC 167 ms
86,272 KB
testcase_13 AC 135 ms
83,072 KB
testcase_14 AC 149 ms
85,760 KB
testcase_15 AC 153 ms
85,888 KB
testcase_16 AC 103 ms
79,360 KB
testcase_17 AC 152 ms
84,992 KB
testcase_18 AC 89 ms
77,184 KB
testcase_19 AC 95 ms
78,208 KB
testcase_20 AC 144 ms
85,376 KB
testcase_21 AC 131 ms
81,152 KB
testcase_22 AC 189 ms
88,192 KB
testcase_23 AC 188 ms
88,320 KB
testcase_24 AC 124 ms
81,920 KB
testcase_25 AC 136 ms
85,376 KB
testcase_26 AC 99 ms
79,488 KB
testcase_27 AC 157 ms
89,160 KB
testcase_28 AC 81 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n = int(input())
ab = [[] for i in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    ab[a].append(b)
    ab[b].append(a)

d = deque()
chk = [0]*n
ans = 0

for i in range(n):
    if len(ab[i]) > 2:
        ans += len(ab[i]) - 2

print(ans)

"""
for i in range(n):
    if chk[i] == 0:
        d.appendleft(i)
        chk[i] = 1
        while len(d):
            tmp = d.popleft()
            if chk[tmp] == 0:
                if len(ab[tmp]) > 2:
                    ans += len(ab[tmp]) - 2
                    d.
"""
0