結果

問題 No.2427 Tree Distance Two
ユーザー loop0919loop0919
提出日時 2023-08-18 22:05:12
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 640 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 552,640 KB
最終ジャッジ日時 2024-11-28 07:17:40
合計ジャッジ時間 34,454 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,240 KB
testcase_01 MLE -
testcase_02 AC 46 ms
59,008 KB
testcase_03 AC 1,290 ms
174,080 KB
testcase_04 AC 42 ms
58,752 KB
testcase_05 AC 1,260 ms
460,920 KB
testcase_06 AC 43 ms
58,880 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 540 ms
169,088 KB
testcase_15 AC 42 ms
53,888 KB
testcase_16 AC 43 ms
54,144 KB
testcase_17 AC 41 ms
53,120 KB
testcase_18 AC 41 ms
54,528 KB
testcase_19 AC 40 ms
54,016 KB
testcase_20 AC 127 ms
78,848 KB
testcase_21 AC 125 ms
79,872 KB
testcase_22 AC 105 ms
77,568 KB
testcase_23 AC 99 ms
77,056 KB
testcase_24 AC 121 ms
79,616 KB
testcase_25 AC 340 ms
100,864 KB
testcase_26 AC 778 ms
134,912 KB
testcase_27 AC 564 ms
119,040 KB
testcase_28 AC 1,159 ms
162,304 KB
testcase_29 AC 1,053 ms
152,192 KB
testcase_30 AC 764 ms
132,864 KB
testcase_31 AC 513 ms
114,048 KB
testcase_32 AC 760 ms
132,352 KB
testcase_33 AC 647 ms
126,464 KB
testcase_34 AC 248 ms
499,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())

tree = [set() for _ in range(N)]

for i in range(N-1):
    a, b = map(lambda x: int(x) - 1, input().split())
    tree[a].add(b)
    tree[b].add(a)

def bfs(a):
    visited = set([a])
    que = deque([(a, 0)])
    cnt = 0
    
    while que:
        now, dist = que.popleft()
        if dist >= 2:
            break
        
        for next in tree[now]:
            if next in visited:
                continue
            if dist+1 == 2:
                cnt += 1
            visited.add(next)
            que.append((next, dist+1))
    
    return cnt


for i in range(N):
    print(bfs(i))
0