結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:57:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,289 ms / 3,000 ms
コード長 500 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 265,264 KB
最終ジャッジ日時 2024-10-08 12:50:45
合計ジャッジ時間 13,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,132 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 477 ms
199,680 KB
testcase_03 AC 419 ms
265,264 KB
testcase_04 AC 679 ms
128,384 KB
testcase_05 AC 1,289 ms
165,204 KB
testcase_06 AC 444 ms
110,344 KB
testcase_07 AC 121 ms
84,212 KB
testcase_08 AC 164 ms
88,448 KB
testcase_09 AC 94 ms
80,128 KB
testcase_10 AC 206 ms
92,996 KB
testcase_11 AC 784 ms
133,712 KB
testcase_12 AC 463 ms
110,464 KB
testcase_13 AC 234 ms
92,944 KB
testcase_14 AC 94 ms
79,616 KB
testcase_15 AC 380 ms
102,784 KB
testcase_16 AC 869 ms
140,800 KB
testcase_17 AC 962 ms
143,444 KB
testcase_18 AC 217 ms
92,892 KB
testcase_19 AC 831 ms
134,912 KB
testcase_20 AC 101 ms
82,688 KB
testcase_21 AC 155 ms
87,296 KB
testcase_22 AC 671 ms
123,992 KB
testcase_23 AC 405 ms
105,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
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