結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:43:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,758 ms / 3,000 ms
コード長 450 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 267,672 KB
最終ジャッジ日時 2024-10-08 10:34:56
合計ジャッジ時間 17,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 44 ms
53,724 KB
testcase_02 AC 829 ms
192,768 KB
testcase_03 AC 753 ms
267,672 KB
testcase_04 AC 973 ms
124,956 KB
testcase_05 AC 1,758 ms
158,300 KB
testcase_06 AC 663 ms
108,416 KB
testcase_07 AC 190 ms
83,584 KB
testcase_08 AC 267 ms
88,184 KB
testcase_09 AC 140 ms
80,768 KB
testcase_10 AC 359 ms
92,416 KB
testcase_11 AC 1,091 ms
129,320 KB
testcase_12 AC 631 ms
109,164 KB
testcase_13 AC 367 ms
92,928 KB
testcase_14 AC 130 ms
80,232 KB
testcase_15 AC 528 ms
101,248 KB
testcase_16 AC 1,242 ms
135,772 KB
testcase_17 AC 1,297 ms
138,492 KB
testcase_18 AC 337 ms
91,888 KB
testcase_19 AC 1,127 ms
130,836 KB
testcase_20 AC 163 ms
82,712 KB
testcase_21 AC 244 ms
86,552 KB
testcase_22 AC 908 ms
120,872 KB
testcase_23 AC 546 ms
103,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=10**9+7
es=[[] for _ in range(n)]
par=[0]*n
for _ in range(n-1):
    a,b=map(int,input().split())
    es[a-1].append(b-1)
    par[b-1]=1

for i in range(n):
    if par[i]==0:
        root=i
        break
stack=[(root,0)]
ans=0

from collections import defaultdict
d=defaultdict(int)

while stack:
    now,depth=stack.pop()
    ans+=depth*(depth+1)//2
    ans%=mod
    for e in es[now]:
        stack.append((e, depth+1))
print(ans)
0