結果

問題 No.1103 Directed Length Sum
ユーザー kohei2019kohei2019
提出日時 2022-07-21 23:51:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 200,064 KB
最終ジャッジ日時 2024-07-03 08:54:30
合計ジャッジ時間 18,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 WA -
testcase_03 AC 606 ms
198,984 KB
testcase_04 AC 946 ms
131,072 KB
testcase_05 AC 1,663 ms
173,184 KB
testcase_06 AC 601 ms
112,000 KB
testcase_07 AC 174 ms
84,836 KB
testcase_08 AC 233 ms
89,472 KB
testcase_09 AC 139 ms
81,408 KB
testcase_10 AC 298 ms
94,528 KB
testcase_11 AC 984 ms
135,808 KB
testcase_12 AC 587 ms
112,640 KB
testcase_13 AC 297 ms
94,848 KB
testcase_14 AC 126 ms
80,876 KB
testcase_15 AC 462 ms
104,448 KB
testcase_16 AC 1,155 ms
146,876 KB
testcase_17 AC 1,208 ms
149,364 KB
testcase_18 AC 312 ms
94,240 KB
testcase_19 AC 1,036 ms
141,312 KB
testcase_20 AC 147 ms
83,272 KB
testcase_21 AC 214 ms
88,064 KB
testcase_22 AC 844 ms
129,536 KB
testcase_23 AC 508 ms
107,160 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)
0