結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,408 KB
testcase_01 AC 36 ms
52,252 KB
testcase_02 AC 783 ms
200,180 KB
testcase_03 AC 701 ms
274,732 KB
testcase_04 AC 869 ms
129,196 KB
testcase_05 AC 1,499 ms
165,200 KB
testcase_06 AC 572 ms
111,088 KB
testcase_07 AC 160 ms
84,300 KB
testcase_08 AC 216 ms
88,772 KB
testcase_09 AC 126 ms
81,076 KB
testcase_10 AC 309 ms
93,332 KB
testcase_11 AC 948 ms
133,620 KB
testcase_12 AC 587 ms
111,236 KB
testcase_13 AC 314 ms
93,948 KB
testcase_14 AC 112 ms
80,324 KB
testcase_15 AC 455 ms
103,636 KB
testcase_16 AC 1,082 ms
140,856 KB
testcase_17 AC 1,147 ms
143,448 KB
testcase_18 AC 292 ms
93,148 KB
testcase_19 AC 1,019 ms
135,352 KB
testcase_20 AC 138 ms
82,820 KB
testcase_21 AC 203 ms
87,368 KB
testcase_22 AC 808 ms
124,324 KB
testcase_23 AC 477 ms
105,712 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
    x=es[now]
    for e in x:
        if visited[e]==1: continue
        stack.append((e, depth+1))
        visited[e]=1
print(ans)
0