結果

問題 No.1103 Directed Length Sum
ユーザー marroncastlemarroncastle
提出日時 2020-07-25 19:25:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,461 ms / 3,000 ms
コード長 466 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 256,396 KB
最終ジャッジ日時 2024-06-27 13:31:48
合計ジャッジ時間 14,346 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 577 ms
192,128 KB
testcase_03 AC 572 ms
256,396 KB
testcase_04 AC 842 ms
139,008 KB
testcase_05 AC 1,461 ms
193,444 KB
testcase_06 AC 547 ms
114,884 KB
testcase_07 AC 158 ms
84,352 KB
testcase_08 AC 221 ms
89,212 KB
testcase_09 AC 115 ms
81,744 KB
testcase_10 AC 289 ms
94,104 KB
testcase_11 AC 920 ms
143,052 KB
testcase_12 AC 544 ms
114,816 KB
testcase_13 AC 295 ms
94,336 KB
testcase_14 AC 118 ms
79,616 KB
testcase_15 AC 437 ms
106,624 KB
testcase_16 AC 1,027 ms
153,216 KB
testcase_17 AC 1,083 ms
157,312 KB
testcase_18 AC 296 ms
94,208 KB
testcase_19 AC 922 ms
147,712 KB
testcase_20 AC 140 ms
82,432 KB
testcase_21 AC 209 ms
86,912 KB
testcase_22 AC 765 ms
133,248 KB
testcase_23 AC 474 ms
105,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline
N = int(input())
edge = [[] for _ in range(N)]
roots = [True]*N
for _ in range(N-1):
    a,b = map(int, input().split())
    roots[b-1] = False
    edge[a-1].append(b-1)

ans = 0
mod = 10**9+7
d = deque()
root = roots.index(True)
d.append([root,0])
while len(d)>0:
    v,depth = d.popleft()
    ans += depth*(depth+1)//2
    ans %= mod
    for w in edge[v]:
        d.append([w,depth+1])
print(ans)
0