結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:35:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,506 ms / 3,000 ms
コード長 513 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 282,828 KB
最終ジャッジ日時 2024-10-08 10:07:28
合計ジャッジ時間 17,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,760 KB
testcase_01 AC 37 ms
54,144 KB
testcase_02 AC 967 ms
282,828 KB
testcase_03 AC 692 ms
279,396 KB
testcase_04 AC 857 ms
124,916 KB
testcase_05 AC 1,506 ms
158,080 KB
testcase_06 AC 551 ms
108,544 KB
testcase_07 AC 166 ms
83,712 KB
testcase_08 AC 227 ms
88,220 KB
testcase_09 AC 125 ms
80,944 KB
testcase_10 AC 299 ms
93,056 KB
testcase_11 AC 966 ms
129,536 KB
testcase_12 AC 566 ms
109,040 KB
testcase_13 AC 305 ms
92,996 KB
testcase_14 AC 111 ms
80,248 KB
testcase_15 AC 461 ms
101,592 KB
testcase_16 AC 1,055 ms
136,104 KB
testcase_17 AC 1,129 ms
138,416 KB
testcase_18 AC 295 ms
92,416 KB
testcase_19 AC 989 ms
130,816 KB
testcase_20 AC 138 ms
82,764 KB
testcase_21 AC 211 ms
87,264 KB
testcase_22 AC 809 ms
120,832 KB
testcase_23 AC 499 ms
103,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=10**9+7
es=[[] for _ in range(n)]
par=[-1]*n
for _ in range(n-1):
    a,b=map(int,input().split())
    es[a-1].append(b-1)
    if par[b-1]==-1:
        par[b-1]=a-1

for i in range(n):
    if par[i]==-1:
        root=i
        break
stack=[(root,0)]
ans=0

from collections import defaultdict
d=defaultdict(int)

while stack:
    now,depth=stack.pop()
    d[depth]+=1
    for e in es[now]:
        stack.append((e, depth+1))

for k in d.keys():
    ans+=d[k]*k*(k+1)//2
    ans%=mod

print(ans)
0