結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,684 KB
testcase_01 AC 37 ms
54,348 KB
testcase_02 AC 1,255 ms
387,564 KB
testcase_03 AC 774 ms
274,768 KB
testcase_04 AC 1,194 ms
191,820 KB
testcase_05 AC 2,303 ms
279,584 KB
testcase_06 AC 730 ms
151,012 KB
testcase_07 AC 202 ms
94,300 KB
testcase_08 AC 274 ms
103,620 KB
testcase_09 AC 143 ms
87,936 KB
testcase_10 AC 370 ms
114,156 KB
testcase_11 AC 1,342 ms
201,712 KB
testcase_12 AC 743 ms
151,820 KB
testcase_13 AC 385 ms
114,720 KB
testcase_14 AC 136 ms
84,272 KB
testcase_15 AC 601 ms
134,028 KB
testcase_16 AC 1,507 ms
217,452 KB
testcase_17 AC 1,541 ms
222,728 KB
testcase_18 AC 380 ms
113,908 KB
testcase_19 AC 1,315 ms
205,000 KB
testcase_20 AC 174 ms
89,768 KB
testcase_21 AC 267 ms
100,352 KB
testcase_22 AC 1,086 ms
180,716 KB
testcase_23 AC 642 ms
139,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
MOD = 10**9 + 7
inpl = lambda: 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