結果

問題 No.1103 Directed Length Sum
ユーザー AtamaokaCAtamaokaC
提出日時 2020-07-03 22:12:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,216 ms / 3,000 ms
コード長 563 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 462,840 KB
最終ジャッジ日時 2024-09-17 02:42:48
合計ジャッジ時間 20,817 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,144 KB
testcase_01 AC 39 ms
53,888 KB
testcase_02 AC 1,575 ms
462,840 KB
testcase_03 AC 894 ms
276,100 KB
testcase_04 AC 1,243 ms
182,056 KB
testcase_05 AC 2,216 ms
256,348 KB
testcase_06 AC 790 ms
145,624 KB
testcase_07 AC 199 ms
93,132 KB
testcase_08 AC 307 ms
102,580 KB
testcase_09 AC 152 ms
87,084 KB
testcase_10 AC 394 ms
111,756 KB
testcase_11 AC 1,359 ms
191,172 KB
testcase_12 AC 759 ms
146,408 KB
testcase_13 AC 407 ms
112,740 KB
testcase_14 AC 124 ms
84,252 KB
testcase_15 AC 600 ms
131,384 KB
testcase_16 AC 1,650 ms
204,620 KB
testcase_17 AC 1,650 ms
210,560 KB
testcase_18 AC 371 ms
111,488 KB
testcase_19 AC 1,383 ms
193,972 KB
testcase_20 AC 177 ms
89,728 KB
testcase_21 AC 275 ms
100,608 KB
testcase_22 AC 1,123 ms
173,108 KB
testcase_23 AC 641 ms
134,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
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

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