結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 20:58:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,730 ms / 3,000 ms
コード長 490 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 214,724 KB
最終ジャッジ日時 2024-10-08 07:02:40
合計ジャッジ時間 16,845 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 838 ms
192,768 KB
testcase_03 AC 667 ms
214,724 KB
testcase_04 AC 930 ms
124,672 KB
testcase_05 AC 1,730 ms
157,952 KB
testcase_06 AC 657 ms
108,544 KB
testcase_07 AC 232 ms
83,968 KB
testcase_08 AC 259 ms
88,656 KB
testcase_09 AC 147 ms
80,896 KB
testcase_10 AC 349 ms
92,672 KB
testcase_11 AC 1,032 ms
129,408 KB
testcase_12 AC 627 ms
108,800 KB
testcase_13 AC 347 ms
92,928 KB
testcase_14 AC 130 ms
80,000 KB
testcase_15 AC 503 ms
101,248 KB
testcase_16 AC 1,181 ms
136,216 KB
testcase_17 AC 1,257 ms
138,240 KB
testcase_18 AC 333 ms
92,672 KB
testcase_19 AC 1,100 ms
130,652 KB
testcase_20 AC 166 ms
82,432 KB
testcase_21 AC 250 ms
87,552 KB
testcase_22 AC 878 ms
120,576 KB
testcase_23 AC 542 ms
103,936 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, Counter
stack=deque([(root,0)])
ans=0
while stack:
    now,depth=stack.pop()
    for e in es[now]:
        stack.append((e, depth+1))
        ans+=(depth+1)*(depth+2)//2
        ans%=mod
print(ans%mod)
0