結果

問題 No.1103 Directed Length Sum
ユーザー marroncastlemarroncastle
提出日時 2020-07-25 19:24:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,726 ms / 3,000 ms
コード長 428 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 260,960 KB
最終ジャッジ日時 2024-06-27 13:30:34
合計ジャッジ時間 16,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,376 KB
testcase_01 AC 44 ms
53,760 KB
testcase_02 AC 833 ms
192,128 KB
testcase_03 AC 797 ms
260,960 KB
testcase_04 AC 932 ms
139,376 KB
testcase_05 AC 1,726 ms
194,228 KB
testcase_06 AC 629 ms
115,084 KB
testcase_07 AC 190 ms
85,376 KB
testcase_08 AC 255 ms
88,320 KB
testcase_09 AC 154 ms
81,280 KB
testcase_10 AC 331 ms
94,592 KB
testcase_11 AC 1,004 ms
144,000 KB
testcase_12 AC 606 ms
115,328 KB
testcase_13 AC 345 ms
94,208 KB
testcase_14 AC 154 ms
80,384 KB
testcase_15 AC 510 ms
107,008 KB
testcase_16 AC 1,200 ms
153,216 KB
testcase_17 AC 1,242 ms
157,696 KB
testcase_18 AC 339 ms
94,208 KB
testcase_19 AC 1,067 ms
147,712 KB
testcase_20 AC 170 ms
82,944 KB
testcase_21 AC 243 ms
88,704 KB
testcase_22 AC 865 ms
132,608 KB
testcase_23 AC 543 ms
109,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
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