結果

問題 No.1103 Directed Length Sum
ユーザー ああいいああいい
提出日時 2022-03-08 12:36:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,652 ms / 3,000 ms
コード長 493 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 263,616 KB
最終ジャッジ日時 2024-07-23 11:56:56
合計ジャッジ時間 17,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 809 ms
199,552 KB
testcase_03 AC 719 ms
263,616 KB
testcase_04 AC 984 ms
129,196 KB
testcase_05 AC 1,652 ms
165,608 KB
testcase_06 AC 574 ms
110,912 KB
testcase_07 AC 157 ms
84,080 KB
testcase_08 AC 230 ms
89,148 KB
testcase_09 AC 124 ms
81,564 KB
testcase_10 AC 292 ms
93,276 KB
testcase_11 AC 988 ms
134,044 KB
testcase_12 AC 623 ms
111,092 KB
testcase_13 AC 303 ms
93,492 KB
testcase_14 AC 113 ms
80,260 KB
testcase_15 AC 460 ms
103,348 KB
testcase_16 AC 1,095 ms
140,872 KB
testcase_17 AC 1,171 ms
143,508 KB
testcase_18 AC 286 ms
93,180 KB
testcase_19 AC 1,028 ms
135,236 KB
testcase_20 AC 137 ms
81,908 KB
testcase_21 AC 208 ms
87,488 KB
testcase_22 AC 802 ms
124,456 KB
testcase_23 AC 492 ms
105,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N+1)]
Gnum = [0] * (N + 1)
for _ in range(N-1):
    a,b = map(int,input().split())
    G[a].append(b)
    Gnum[b] += 1
root = -1
for i in range(1,N+1):
    if Gnum[i] == 0:
        root = i
        break
    

P = 10 ** 9 + 7
depth = [0] * (N + 1)
stack = [root]
ans = 0
while stack:
    now = stack.pop()
    for v in G[now]:
        depth[v] = depth[now] + 1
        ans = (ans + depth[v] * (depth[v] + 1) // 2) % P
        stack.append(v)
print(ans)
0