結果

問題 No.1103 Directed Length Sum
ユーザー Ldio03Ldio03
提出日時 2020-07-04 00:41:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,558 ms / 3,000 ms
コード長 564 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 387,800 KB
最終ジャッジ日時 2024-09-17 05:21:55
合計ジャッジ時間 20,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 1,345 ms
387,800 KB
testcase_03 AC 879 ms
268,784 KB
testcase_04 AC 1,259 ms
192,000 KB
testcase_05 AC 2,558 ms
279,376 KB
testcase_06 AC 829 ms
151,680 KB
testcase_07 AC 206 ms
93,568 KB
testcase_08 AC 302 ms
103,936 KB
testcase_09 AC 165 ms
87,552 KB
testcase_10 AC 404 ms
113,536 KB
testcase_11 AC 1,317 ms
199,808 KB
testcase_12 AC 798 ms
151,680 KB
testcase_13 AC 414 ms
114,432 KB
testcase_14 AC 142 ms
84,480 KB
testcase_15 AC 633 ms
135,680 KB
testcase_16 AC 1,582 ms
216,592 KB
testcase_17 AC 1,642 ms
222,592 KB
testcase_18 AC 398 ms
113,664 KB
testcase_19 AC 1,493 ms
205,056 KB
testcase_20 AC 204 ms
90,368 KB
testcase_21 AC 298 ms
101,888 KB
testcase_22 AC 1,147 ms
182,144 KB
testcase_23 AC 675 ms
138,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
MOD = 10**9 + 7
inpl = lambda: list(map(int,input().split()))
N = int(input())
children = [set() for _ in range(N)]
parent = [None] * N
for _ in range(N-1):
    A, B = inpl()
    A, B = A-1, B-1
    children[A].add(B)
    parent[B] = A
depth=[-1]*N
root = parent.index(None)
ans = 0
pool = deque([root])
depth[root]=0
while pool:
    node = pool.popleft()
    ans += depth[node] * (depth[node]+1) // 2
    for c in children[node]:
        if depth[c]!=-1:continue
        depth[c]=depth[node]+1
        pool.append(c)

print(ans%MOD)
0