結果

問題 No.1103 Directed Length Sum
ユーザー convexineqconvexineq
提出日時 2021-05-10 05:36:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,437 ms / 3,000 ms
コード長 655 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 268,808 KB
最終ジャッジ日時 2024-09-19 09:31:08
合計ジャッジ時間 13,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,244 KB
testcase_01 AC 37 ms
52,948 KB
testcase_02 AC 543 ms
260,128 KB
testcase_03 AC 448 ms
268,808 KB
testcase_04 AC 814 ms
165,292 KB
testcase_05 AC 1,437 ms
239,380 KB
testcase_06 AC 494 ms
143,776 KB
testcase_07 AC 121 ms
91,140 KB
testcase_08 AC 167 ms
100,840 KB
testcase_09 AC 94 ms
84,536 KB
testcase_10 AC 237 ms
109,084 KB
testcase_11 AC 858 ms
182,536 KB
testcase_12 AC 497 ms
144,276 KB
testcase_13 AC 238 ms
111,084 KB
testcase_14 AC 84 ms
82,648 KB
testcase_15 AC 376 ms
122,344 KB
testcase_16 AC 976 ms
182,336 KB
testcase_17 AC 1,073 ms
212,108 KB
testcase_18 AC 251 ms
108,972 KB
testcase_19 AC 913 ms
196,180 KB
testcase_20 AC 103 ms
87,684 KB
testcase_21 AC 175 ms
98,720 KB
testcase_22 AC 738 ms
153,216 KB
testcase_23 AC 424 ms
134,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input())
g = [[] for _ in range(n)]
is_child = [0]*n
for i in range(n-1):
    a,b = map(int,sys.stdin.readline().split())
    g[a-1].append(b-1)
    is_child[b-1] = 1
root = is_child.index(0)

order = []
st = [root]
parent = [-1]*n
depth = [1]*n
while st:
    v = st.pop()
    order.append(v)
    for c in g[v]:
        if c != parent[v]:
            st.append(c)
            parent[c] = v
            depth[c] = depth[v] + 1

size = [1]*n
for i in order[::-1]:
    if i==root: break
    size[parent[i]] += size[i]

MOD = 10**9+7
ans = 0
for i in range(n):
    if i==root: continue
    ans += size[i]*depth[parent[i]]%MOD
print(ans%MOD)
0