結果

問題 No.1103 Directed Length Sum
ユーザー AtamaokaCAtamaokaC
提出日時 2020-07-03 23:11:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,184 ms / 3,000 ms
コード長 563 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 294,720 KB
最終ジャッジ日時 2024-09-17 04:50:31
合計ジャッジ時間 20,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,672 KB
testcase_01 AC 42 ms
54,852 KB
testcase_02 AC 1,234 ms
294,720 KB
testcase_03 AC 926 ms
264,004 KB
testcase_04 AC 1,149 ms
134,276 KB
testcase_05 AC 2,184 ms
173,588 KB
testcase_06 AC 768 ms
114,396 KB
testcase_07 AC 220 ms
85,876 KB
testcase_08 AC 308 ms
90,628 KB
testcase_09 AC 164 ms
82,388 KB
testcase_10 AC 423 ms
96,740 KB
testcase_11 AC 1,336 ms
139,236 KB
testcase_12 AC 753 ms
114,436 KB
testcase_13 AC 408 ms
96,740 KB
testcase_14 AC 147 ms
81,284 KB
testcase_15 AC 611 ms
106,308 KB
testcase_16 AC 1,507 ms
146,584 KB
testcase_17 AC 1,568 ms
149,472 KB
testcase_18 AC 387 ms
96,072 KB
testcase_19 AC 1,363 ms
141,176 KB
testcase_20 AC 182 ms
83,916 KB
testcase_21 AC 281 ms
89,600 KB
testcase_22 AC 1,074 ms
129,460 KB
testcase_23 AC 622 ms
108,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
MOD = 10**9 + 7
inpl = lambda: list(map(int,input().split()))
N = int(input())
children = [[] for _ in range(N)]
parent = [None] * N
for _ in range(N-1):
    A, B = inpl()
    A, B = A-1, B-1
    children[A].append(B)
    parent[B] = A

layer = defaultdict(int)
forward, back = 0, 1
root = parent.index(None)
pool = [(root,0)]
while pool:
    node, d = pool.pop()
    layer[d] += 1
    for c in children[node]:
        pool.append((c, d+1))

ans = 0
for d, n in layer.items():
    ans += n*d*(d+1)//2
    ans %= MOD
print(ans)
0