結果

問題 No.1103 Directed Length Sum
ユーザー kohei2019kohei2019
提出日時 2022-07-21 23:52:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,503 ms / 3,000 ms
コード長 496 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 200,180 KB
最終ジャッジ日時 2024-07-03 08:56:45
合計ジャッジ時間 15,280 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,708 KB
testcase_01 AC 36 ms
55,348 KB
testcase_02 AC 716 ms
200,180 KB
testcase_03 AC 588 ms
199,180 KB
testcase_04 AC 836 ms
131,012 KB
testcase_05 AC 1,503 ms
173,316 KB
testcase_06 AC 564 ms
112,156 KB
testcase_07 AC 157 ms
84,900 KB
testcase_08 AC 237 ms
89,576 KB
testcase_09 AC 128 ms
81,716 KB
testcase_10 AC 295 ms
94,728 KB
testcase_11 AC 935 ms
135,816 KB
testcase_12 AC 565 ms
112,500 KB
testcase_13 AC 300 ms
95,164 KB
testcase_14 AC 113 ms
80,628 KB
testcase_15 AC 464 ms
104,676 KB
testcase_16 AC 1,122 ms
146,940 KB
testcase_17 AC 1,148 ms
149,452 KB
testcase_18 AC 299 ms
94,476 KB
testcase_19 AC 961 ms
141,192 KB
testcase_20 AC 141 ms
83,436 KB
testcase_21 AC 199 ms
88,356 KB
testcase_22 AC 806 ms
129,812 KB
testcase_23 AC 478 ms
106,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
lsg = [[] for i in range(N)]
per = [0]*(N)
for i in range(N-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    lsg[a].append(b)
    per[b] += 1
r = -1
for i in range(N):
    if per[i] == 0:
        r = i
        break
d = collections.deque([r])
depth = [0]*(N)
while d:
    x = d.popleft()
    for j in lsg[x]:
        depth[j] = depth[x]+1
        d.append(j)
ans = 0
for i in range(N):
    ans += (depth[i])*(depth[i]+1)//2
print(ans%(10**9+7))
0