結果

問題 No.1103 Directed Length Sum
ユーザー marroncastlemarroncastle
提出日時 2020-09-13 05:05:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,532 ms / 3,000 ms
コード長 606 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 258,872 KB
最終ジャッジ日時 2024-06-10 22:50:05
合計ジャッジ時間 14,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 660 ms
200,192 KB
testcase_03 AC 582 ms
258,872 KB
testcase_04 AC 803 ms
129,024 KB
testcase_05 AC 1,532 ms
165,760 KB
testcase_06 AC 538 ms
110,336 KB
testcase_07 AC 153 ms
84,096 KB
testcase_08 AC 215 ms
89,088 KB
testcase_09 AC 127 ms
81,664 KB
testcase_10 AC 285 ms
93,184 KB
testcase_11 AC 861 ms
133,760 KB
testcase_12 AC 511 ms
110,720 KB
testcase_13 AC 268 ms
93,696 KB
testcase_14 AC 107 ms
79,872 KB
testcase_15 AC 408 ms
103,040 KB
testcase_16 AC 996 ms
141,056 KB
testcase_17 AC 1,080 ms
143,744 KB
testcase_18 AC 259 ms
93,440 KB
testcase_19 AC 941 ms
135,296 KB
testcase_20 AC 124 ms
82,048 KB
testcase_21 AC 193 ms
87,552 KB
testcase_22 AC 742 ms
124,288 KB
testcase_23 AC 429 ms
104,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

def dfs(start):
  global ans,mod
  stack = [start]
  depth = [-1]*N
  depth[start] = 0
  while stack:
    v = stack.pop()
    marker = 0
    for u in edge[v]:
      if depth[u]==-1: #前半
        marker = 1
        depth[u]=depth[v]+1
        ans += depth[u]*(depth[u]+1)//2
        ans %= mod
        stack.append(u)
  return

N = int(input())
mod = 10**9+7
edge = [[] for _ in range(N)]
roots = [True]*N
for i in range(N-1):
  a,b = list(map(int, input().split()))
  roots[b-1] = False
  edge[a-1].append(b-1)

root = roots.index(True)
ans = 0
dfs(root)
print(ans)
0