結果

問題 No.1103 Directed Length Sum
ユーザー AtamaokaCAtamaokaC
提出日時 2020-07-04 00:54:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,845 ms / 3,000 ms
コード長 713 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 229,848 KB
最終ジャッジ日時 2024-09-17 05:24:14
合計ジャッジ時間 16,511 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,016 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 796 ms
220,416 KB
testcase_03 AC 620 ms
229,848 KB
testcase_04 AC 980 ms
138,752 KB
testcase_05 AC 1,845 ms
183,476 KB
testcase_06 AC 627 ms
114,816 KB
testcase_07 AC 177 ms
85,588 KB
testcase_08 AC 255 ms
90,624 KB
testcase_09 AC 132 ms
82,048 KB
testcase_10 AC 340 ms
95,424 KB
testcase_11 AC 1,103 ms
140,800 KB
testcase_12 AC 648 ms
115,136 KB
testcase_13 AC 343 ms
95,616 KB
testcase_14 AC 116 ms
80,256 KB
testcase_15 AC 513 ms
106,496 KB
testcase_16 AC 1,268 ms
148,200 KB
testcase_17 AC 1,326 ms
154,880 KB
testcase_18 AC 332 ms
95,232 KB
testcase_19 AC 1,129 ms
142,080 KB
testcase_20 AC 147 ms
83,328 KB
testcase_21 AC 230 ms
89,216 KB
testcase_22 AC 891 ms
130,048 KB
testcase_23 AC 539 ms
108,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = lambda: sys.stdin.readline().rstrip()
inpl = lambda: list(map(int,input().split()))
MOD = 10**9 + 7
N = int(input())
children = [[] for _ in range(N)]
parent = [None] * N
for _ in range(N-1):
    A, B = inpl()
    A, B = A-1, B-1
    children[A].append(B)
    parent[B] = A
root = parent.index(None)

pool = deque([root, -1])
ans = 0
d, n = 0, 0
while pool:
    node = pool.popleft()
    if node < 0:
        ans += (n * d * (d+1) // 2) % MOD
        ans %= MOD
        n = 0
        d += 1
        if pool:
            pool.append(-1)
        else:
            break
    else:
        n += 1
        for c in children[node]:
            pool.append(c)
print(ans)
0