結果

問題 No.806 木を道に
ユーザー stngstng
提出日時 2022-07-02 17:46:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 88,772 KB
最終ジャッジ日時 2024-11-27 12:59:33
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 40 ms
53,248 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 40 ms
53,504 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 42 ms
53,504 KB
testcase_07 AC 40 ms
53,504 KB
testcase_08 AC 39 ms
53,248 KB
testcase_09 AC 39 ms
53,248 KB
testcase_10 AC 97 ms
78,208 KB
testcase_11 AC 96 ms
77,696 KB
testcase_12 AC 152 ms
85,888 KB
testcase_13 AC 133 ms
82,304 KB
testcase_14 AC 154 ms
85,248 KB
testcase_15 AC 155 ms
85,760 KB
testcase_16 AC 103 ms
78,464 KB
testcase_17 AC 143 ms
85,120 KB
testcase_18 AC 90 ms
77,440 KB
testcase_19 AC 96 ms
78,208 KB
testcase_20 AC 145 ms
84,864 KB
testcase_21 AC 117 ms
81,152 KB
testcase_22 AC 176 ms
88,064 KB
testcase_23 AC 176 ms
87,936 KB
testcase_24 AC 108 ms
81,792 KB
testcase_25 AC 126 ms
85,120 KB
testcase_26 AC 93 ms
79,488 KB
testcase_27 AC 140 ms
88,772 KB
testcase_28 AC 71 ms
70,656 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