結果

問題 No.1103 Directed Length Sum
ユーザー Ldio03Ldio03
提出日時 2020-05-06 01:20:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,626 ms / 3,000 ms
コード長 693 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 268,840 KB
最終ジャッジ日時 2024-06-27 12:38:47
合計ジャッジ時間 15,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 656 ms
260,096 KB
testcase_03 AC 569 ms
268,840 KB
testcase_04 AC 902 ms
165,364 KB
testcase_05 AC 1,626 ms
242,440 KB
testcase_06 AC 579 ms
144,128 KB
testcase_07 AC 148 ms
91,104 KB
testcase_08 AC 208 ms
100,352 KB
testcase_09 AC 115 ms
84,608 KB
testcase_10 AC 294 ms
109,056 KB
testcase_11 AC 998 ms
183,640 KB
testcase_12 AC 565 ms
143,964 KB
testcase_13 AC 292 ms
110,952 KB
testcase_14 AC 109 ms
82,688 KB
testcase_15 AC 451 ms
120,448 KB
testcase_16 AC 1,133 ms
182,144 KB
testcase_17 AC 1,161 ms
212,864 KB
testcase_18 AC 280 ms
109,184 KB
testcase_19 AC 1,043 ms
196,096 KB
testcase_20 AC 127 ms
87,680 KB
testcase_21 AC 201 ms
98,560 KB
testcase_22 AC 800 ms
153,216 KB
testcase_23 AC 466 ms
134,400 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