結果

問題 No.1103 Directed Length Sum
ユーザー Ldio03Ldio03
提出日時 2020-06-28 18:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,295 ms / 3,000 ms
コード長 693 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 268,836 KB
最終ジャッジ日時 2024-07-08 00:08:52
合計ジャッジ時間 13,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,688 KB
testcase_01 AC 31 ms
52,520 KB
testcase_02 AC 521 ms
260,200 KB
testcase_03 AC 472 ms
268,836 KB
testcase_04 AC 725 ms
164,908 KB
testcase_05 AC 1,295 ms
242,816 KB
testcase_06 AC 409 ms
143,972 KB
testcase_07 AC 112 ms
91,272 KB
testcase_08 AC 150 ms
100,868 KB
testcase_09 AC 85 ms
84,612 KB
testcase_10 AC 205 ms
109,292 KB
testcase_11 AC 776 ms
183,564 KB
testcase_12 AC 458 ms
144,276 KB
testcase_13 AC 210 ms
111,228 KB
testcase_14 AC 86 ms
82,668 KB
testcase_15 AC 332 ms
120,204 KB
testcase_16 AC 861 ms
182,272 KB
testcase_17 AC 901 ms
212,808 KB
testcase_18 AC 203 ms
109,476 KB
testcase_19 AC 795 ms
195,876 KB
testcase_20 AC 101 ms
87,704 KB
testcase_21 AC 151 ms
98,784 KB
testcase_22 AC 646 ms
153,356 KB
testcase_23 AC 343 ms
134,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
n=int(input())
edge=[[] for i in range(n)]
isroot=[True]*n
for i in range(n-1):
    a,b=map(int,input().split())
    a-=1;b-=1
    edge[a].append(b)
    isroot[b]=False
Root=0
for i in range(n):
    if isroot[i]:Root=i;break   
order = []
par = [-1]*n
tank = [Root]
depth=[0]*n
while tank:
    pele = tank.pop()
    order.append(pele)
    for e in edge[pele]:
        if e == par[pele]:
            continue
        tank.append(e)
        par[e] = pele
        depth[e]=depth[pele]+1
size = [1]*n
for e in order[::-1]:
    if e == Root:
        break
    size[par[e]] += size[e]
ans=0
for i in range(n):
    ans+=size[i]*depth[i]
    ans%=10**9+7
print(ans)
0