結果

問題 No.1103 Directed Length Sum
ユーザー 37zigen37zigen
提出日時 2020-07-03 22:47:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 565 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 267,892 KB
最終ジャッジ日時 2024-09-17 04:28:49
合計ジャッジ時間 22,805 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,240 KB
testcase_01 AC 37 ms
53,620 KB
testcase_02 RE -
testcase_03 AC 956 ms
267,892 KB
testcase_04 AC 1,373 ms
151,336 KB
testcase_05 AC 2,445 ms
202,900 KB
testcase_06 AC 941 ms
125,528 KB
testcase_07 AC 256 ms
88,500 KB
testcase_08 AC 366 ms
94,564 KB
testcase_09 AC 189 ms
83,796 KB
testcase_10 AC 498 ms
101,312 KB
testcase_11 AC 1,610 ms
157,928 KB
testcase_12 AC 950 ms
126,156 KB
testcase_13 AC 507 ms
101,432 KB
testcase_14 AC 165 ms
83,136 KB
testcase_15 AC 751 ms
114,692 KB
testcase_16 AC 1,664 ms
167,848 KB
testcase_17 AC 1,845 ms
172,100 KB
testcase_18 AC 473 ms
101,384 KB
testcase_19 AC 1,573 ms
159,652 KB
testcase_20 AC 212 ms
85,296 KB
testcase_21 AC 332 ms
93,136 KB
testcase_22 AC 1,291 ms
145,068 KB
testcase_23 AC 798 ms
118,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5**6)


MOD=10**9+7
N=int(input())
g=[[] for _ in range(N+1)]
sz=[0]*(N+1)
root=-1
deg=[0]*(N+1)
for _ in range(N-1):
    a,b=map(int,input().split())
    g[a].append(b)
    g[b].append(a)
    deg[b]+=1

for i in range(1,N+1):
    if deg[i]==0:
        root=i
ans=0

def dfs(cur,par,d):
    global ans
    sz[cur]=1
    for dst in g[cur]:
        if dst==par:
            continue
        dfs(dst,cur,d+1)
        sz[cur]+=sz[dst]
        ans+=sz[dst]*(d+1)%MOD
        if ans>=MOD:
            ans-=MOD

dfs(root,-1,0)
print(ans)

0