結果

問題 No.1103 Directed Length Sum
ユーザー tamatotamato
提出日時 2020-07-03 21:51:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,028 ms / 3,000 ms
コード長 763 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 199,192 KB
最終ジャッジ日時 2024-09-17 00:17:55
合計ジャッジ時間 10,018 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,452 KB
testcase_01 AC 38 ms
55,712 KB
testcase_02 AC 367 ms
199,192 KB
testcase_03 AC 322 ms
196,376 KB
testcase_04 AC 569 ms
133,748 KB
testcase_05 AC 1,028 ms
174,740 KB
testcase_06 AC 340 ms
113,728 KB
testcase_07 AC 108 ms
84,420 KB
testcase_08 AC 141 ms
88,652 KB
testcase_09 AC 85 ms
81,196 KB
testcase_10 AC 183 ms
93,756 KB
testcase_11 AC 616 ms
137,796 KB
testcase_12 AC 353 ms
114,224 KB
testcase_13 AC 177 ms
94,344 KB
testcase_14 AC 80 ms
80,244 KB
testcase_15 AC 273 ms
105,804 KB
testcase_16 AC 764 ms
144,632 KB
testcase_17 AC 776 ms
148,644 KB
testcase_18 AC 185 ms
93,900 KB
testcase_19 AC 628 ms
139,656 KB
testcase_20 AC 87 ms
81,824 KB
testcase_21 AC 128 ms
87,836 KB
testcase_22 AC 501 ms
128,736 KB
testcase_23 AC 293 ms
106,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.buffer.readline

    def f(n):
        return (n * (n+1) // 2)%mod

    N = int(input())
    par = [0] * (N+1)
    child = [[] for _ in range(N+1)]
    for _ in range(N-1):
        a, b = map(int, input().split())
        par[b] = a
        child[a].append(b)

    for v in range(1, N+1):
        if par[v] == 0:
            v0 = v
            break
    depth = [-1] * (N+1)
    que = deque()
    que.append(v0)
    ans = 0
    while que:
        v = que.popleft()
        depth[v] = depth[par[v]] + 1
        for u in child[v]:
            que.append(u)
        ans = (ans + f(depth[v]))%mod
    print(ans)


if __name__ == '__main__':
    main()
0