結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:28:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,490 ms / 3,000 ms
コード長 470 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 214,976 KB
最終ジャッジ日時 2024-10-08 09:44:09
合計ジャッジ時間 15,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,888 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 742 ms
192,896 KB
testcase_03 AC 759 ms
214,976 KB
testcase_04 AC 867 ms
124,788 KB
testcase_05 AC 1,490 ms
158,080 KB
testcase_06 AC 561 ms
108,800 KB
testcase_07 AC 162 ms
83,424 KB
testcase_08 AC 227 ms
88,672 KB
testcase_09 AC 128 ms
80,684 KB
testcase_10 AC 286 ms
92,672 KB
testcase_11 AC 940 ms
129,548 KB
testcase_12 AC 518 ms
109,152 KB
testcase_13 AC 283 ms
92,848 KB
testcase_14 AC 112 ms
80,028 KB
testcase_15 AC 417 ms
101,440 KB
testcase_16 AC 1,053 ms
135,668 KB
testcase_17 AC 1,038 ms
138,480 KB
testcase_18 AC 265 ms
92,416 KB
testcase_19 AC 940 ms
130,560 KB
testcase_20 AC 139 ms
82,484 KB
testcase_21 AC 212 ms
87,400 KB
testcase_22 AC 770 ms
120,760 KB
testcase_23 AC 454 ms
103,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(n):
    if par[i]==-1:
        root=i
        break
# dfs
from collections import deque
stack=deque([(root,0)])
ans=0

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%mod)
0