結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:51:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,520 ms / 3,000 ms
コード長 462 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 274,908 KB
最終ジャッジ日時 2024-10-08 10:55:49
合計ジャッジ時間 14,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,032 KB
testcase_01 AC 36 ms
53,388 KB
testcase_02 AC 740 ms
200,400 KB
testcase_03 AC 682 ms
274,908 KB
testcase_04 AC 868 ms
129,328 KB
testcase_05 AC 1,520 ms
165,736 KB
testcase_06 AC 535 ms
110,824 KB
testcase_07 AC 158 ms
84,416 KB
testcase_08 AC 211 ms
88,704 KB
testcase_09 AC 124 ms
81,552 KB
testcase_10 AC 288 ms
93,296 KB
testcase_11 AC 950 ms
133,952 KB
testcase_12 AC 564 ms
111,076 KB
testcase_13 AC 285 ms
94,408 KB
testcase_14 AC 112 ms
80,644 KB
testcase_15 AC 439 ms
103,492 KB
testcase_16 AC 1,155 ms
141,240 KB
testcase_17 AC 1,117 ms
143,352 KB
testcase_18 AC 294 ms
93,144 KB
testcase_19 AC 989 ms
135,660 KB
testcase_20 AC 132 ms
82,820 KB
testcase_21 AC 198 ms
87,300 KB
testcase_22 AC 790 ms
124,592 KB
testcase_23 AC 468 ms
105,440 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
visited=[0]*n
while stack:
    now,depth=stack.pop()
    ans+=depth*(depth+1)//2
    ans%=mod
    if visited[now]==0:
        visited[now]=1
        for e in es[now]:
            stack.append((e, depth+1))
print(ans)
0