結果

問題 No.1103 Directed Length Sum
ユーザー AtamaokaCAtamaokaC
提出日時 2020-07-04 00:37:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,904 ms / 3,000 ms
コード長 656 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 222,076 KB
最終ジャッジ日時 2024-09-17 05:20:54
合計ジャッジ時間 17,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,064 KB
testcase_01 AC 39 ms
54,700 KB
testcase_02 AC 868 ms
208,836 KB
testcase_03 AC 738 ms
222,076 KB
testcase_04 AC 964 ms
138,980 KB
testcase_05 AC 1,904 ms
181,244 KB
testcase_06 AC 652 ms
115,016 KB
testcase_07 AC 189 ms
86,176 KB
testcase_08 AC 263 ms
91,116 KB
testcase_09 AC 148 ms
82,548 KB
testcase_10 AC 352 ms
96,912 KB
testcase_11 AC 1,177 ms
144,324 KB
testcase_12 AC 699 ms
115,400 KB
testcase_13 AC 369 ms
96,924 KB
testcase_14 AC 134 ms
81,260 KB
testcase_15 AC 574 ms
107,020 KB
testcase_16 AC 1,373 ms
152,400 KB
testcase_17 AC 1,515 ms
151,280 KB
testcase_18 AC 403 ms
96,892 KB
testcase_19 AC 1,303 ms
146,260 KB
testcase_20 AC 177 ms
83,968 KB
testcase_21 AC 271 ms
89,716 KB
testcase_22 AC 1,054 ms
130,292 KB
testcase_23 AC 658 ms
108,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
MOD = 10**9 + 7
inpl = lambda: list(map(int,input().split()))
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