結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 20:56:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,690 ms / 3,000 ms
コード長 526 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 276,528 KB
最終ジャッジ日時 2024-10-08 06:55:52
合計ジャッジ時間 17,958 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,632 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 955 ms
245,764 KB
testcase_03 AC 743 ms
276,528 KB
testcase_04 AC 908 ms
157,476 KB
testcase_05 AC 1,690 ms
207,012 KB
testcase_06 AC 587 ms
129,816 KB
testcase_07 AC 179 ms
89,372 KB
testcase_08 AC 240 ms
97,660 KB
testcase_09 AC 147 ms
84,052 KB
testcase_10 AC 322 ms
104,064 KB
testcase_11 AC 1,028 ms
164,684 KB
testcase_12 AC 589 ms
129,692 KB
testcase_13 AC 315 ms
107,392 KB
testcase_14 AC 132 ms
82,176 KB
testcase_15 AC 518 ms
127,832 KB
testcase_16 AC 1,198 ms
173,860 KB
testcase_17 AC 1,256 ms
176,220 KB
testcase_18 AC 336 ms
103,460 KB
testcase_19 AC 1,083 ms
166,632 KB
testcase_20 AC 154 ms
86,144 KB
testcase_21 AC 221 ms
94,976 KB
testcase_22 AC 839 ms
148,440 KB
testcase_23 AC 521 ms
123,168 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

new=[]
# dfs
from collections import deque, Counter
stack=deque([(root,0)])
ans=0
while stack:
    now,depth=stack.pop()
    new.append((now,depth))
    for e in es[now]:
        stack.append((e, depth+1))
        ans+=(depth+1)*(depth+2)//2
        ans%=mod
print(ans%mod)
0