結果

問題 No.1103 Directed Length Sum
ユーザー anagohirameanagohirame
提出日時 2020-07-03 23:49:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,279 ms / 3,000 ms
コード長 538 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 262,892 KB
最終ジャッジ日時 2024-09-17 05:07:53
合計ジャッジ時間 12,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,064 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 449 ms
196,224 KB
testcase_03 AC 367 ms
262,892 KB
testcase_04 AC 691 ms
129,024 KB
testcase_05 AC 1,279 ms
164,608 KB
testcase_06 AC 462 ms
110,204 KB
testcase_07 AC 130 ms
83,072 KB
testcase_08 AC 176 ms
87,680 KB
testcase_09 AC 99 ms
80,896 KB
testcase_10 AC 247 ms
93,060 KB
testcase_11 AC 782 ms
133,248 KB
testcase_12 AC 468 ms
111,020 KB
testcase_13 AC 243 ms
93,156 KB
testcase_14 AC 88 ms
79,872 KB
testcase_15 AC 381 ms
103,168 KB
testcase_16 AC 922 ms
140,288 KB
testcase_17 AC 983 ms
143,104 KB
testcase_18 AC 237 ms
93,204 KB
testcase_19 AC 850 ms
134,912 KB
testcase_20 AC 105 ms
81,664 KB
testcase_21 AC 178 ms
86,976 KB
testcase_22 AC 679 ms
123,856 KB
testcase_23 AC 404 ms
104,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000010)
def input():
	return sys.stdin.buffer.readline()[:-1]
MOD = 10**9+7

n = int(input())
aff = [0 for _ in range(n)]
adj = [[] for _ in range(n)]
for _ in range(n-1):
	u, v = map(int, input().split())
	adj[u-1].append(v-1)
	aff[v-1] += 1
for i, x in enumerate(aff):
	if x == 0:
		root = i
		break

ans = 0
dep = [0 for _ in range(n)]
ans = 0
stack = [root]
while stack:
	i = stack.pop()
	ans += dep[i] * (dep[i]+1) // 2
	ans %= MOD
	for j in adj[i]:
		dep[j] = dep[i]+1
		stack.append(j)

print(ans)
0