結果

問題 No.2427 Tree Distance Two
ユーザー loop0919loop0919
提出日時 2023-08-18 22:08:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 621 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 488,064 KB
最終ジャッジ日時 2024-11-28 07:28:40
合計ジャッジ時間 35,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,880 KB
testcase_01 AC 40 ms
469,752 KB
testcase_02 AC 49 ms
58,752 KB
testcase_03 AC 1,255 ms
370,816 KB
testcase_04 AC 40 ms
58,752 KB
testcase_05 AC 1,227 ms
488,064 KB
testcase_06 AC 41 ms
58,752 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 557 ms
168,448 KB
testcase_15 AC 42 ms
53,760 KB
testcase_16 AC 43 ms
54,272 KB
testcase_17 AC 42 ms
53,632 KB
testcase_18 AC 43 ms
54,528 KB
testcase_19 AC 41 ms
53,760 KB
testcase_20 AC 126 ms
79,360 KB
testcase_21 AC 126 ms
79,232 KB
testcase_22 AC 112 ms
77,184 KB
testcase_23 AC 101 ms
77,184 KB
testcase_24 AC 121 ms
79,360 KB
testcase_25 AC 354 ms
101,504 KB
testcase_26 AC 806 ms
134,528 KB
testcase_27 AC 565 ms
118,400 KB
testcase_28 AC 1,223 ms
162,816 KB
testcase_29 AC 1,112 ms
151,936 KB
testcase_30 AC 827 ms
132,736 KB
testcase_31 AC 543 ms
113,920 KB
testcase_32 AC 932 ms
132,608 KB
testcase_33 AC 804 ms
125,824 KB
testcase_34 AC 252 ms
91,776 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()
        for next in tree[now]:
            if next in visited:
                continue
            visited.add(next)
            
            if dist+1 == 2:
                cnt += 1
            else:
                que.append((next, dist+1))
    return cnt


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