結果

問題 No.1103 Directed Length Sum
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-09 02:52:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,180 ms / 3,000 ms
コード長 946 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 382,172 KB
最終ジャッジ日時 2024-11-30 20:11:13
合計ジャッジ時間 16,961 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 842 ms
379,424 KB
testcase_03 AC 661 ms
382,172 KB
testcase_04 AC 1,003 ms
219,960 KB
testcase_05 AC 2,180 ms
306,184 KB
testcase_06 AC 604 ms
162,696 KB
testcase_07 AC 143 ms
98,428 KB
testcase_08 AC 190 ms
106,928 KB
testcase_09 AC 105 ms
86,988 KB
testcase_10 AC 285 ms
123,820 KB
testcase_11 AC 1,055 ms
229,420 KB
testcase_12 AC 616 ms
170,704 KB
testcase_13 AC 293 ms
123,148 KB
testcase_14 AC 100 ms
85,392 KB
testcase_15 AC 443 ms
151,292 KB
testcase_16 AC 1,238 ms
246,600 KB
testcase_17 AC 1,294 ms
252,292 KB
testcase_18 AC 258 ms
120,940 KB
testcase_19 AC 1,108 ms
232,992 KB
testcase_20 AC 112 ms
89,216 KB
testcase_21 AC 176 ms
105,160 KB
testcase_22 AC 892 ms
211,840 KB
testcase_23 AC 503 ms
158,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

mod = 10**9+7

def main():
    n = int(input())
    g = [[] for _ in range(n)]
    ind = [[] for _ in range(n)]
    for i in range(n-1):
        a, b = map(int, input().split())
        a, b = a-1, b-1
        g[a].append(b)
        ind[b].append(a)

    root = -1
    for i in range(n):
        if len(ind[i]) == 0:
            root = i
            break

    s = []
    s.append(root)
    order = []
    par = [-1]*n
    depth = [0]*n
    while s:
        v = s.pop()
        order.append(v)
        for u in g[v]:
            if u == par[v]:
                continue
            par[u] = v
            s.append(u)
            depth[u] = depth[v]+1

    #print(depth)
    ans = 0
    for i in range(n):
        d = depth[i]
        ans += d*(d+1)//2
        ans %= mod
    print(ans)

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