結果

問題 No.1103 Directed Length Sum
ユーザー Ldio03Ldio03
提出日時 2020-07-04 00:47:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,597 ms / 3,000 ms
コード長 690 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 223,416 KB
最終ジャッジ日時 2024-09-17 05:23:46
合計ジャッジ時間 14,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,248 KB
testcase_01 AC 38 ms
54,640 KB
testcase_02 AC 658 ms
219,192 KB
testcase_03 AC 491 ms
223,416 KB
testcase_04 AC 848 ms
135,588 KB
testcase_05 AC 1,597 ms
181,012 KB
testcase_06 AC 498 ms
115,084 KB
testcase_07 AC 138 ms
85,868 KB
testcase_08 AC 193 ms
90,352 KB
testcase_09 AC 107 ms
82,328 KB
testcase_10 AC 266 ms
96,380 KB
testcase_11 AC 1,002 ms
144,588 KB
testcase_12 AC 556 ms
115,200 KB
testcase_13 AC 288 ms
96,288 KB
testcase_14 AC 96 ms
80,164 KB
testcase_15 AC 419 ms
106,604 KB
testcase_16 AC 1,045 ms
147,956 KB
testcase_17 AC 1,103 ms
155,152 KB
testcase_18 AC 258 ms
95,684 KB
testcase_19 AC 952 ms
142,792 KB
testcase_20 AC 126 ms
83,752 KB
testcase_21 AC 184 ms
88,692 KB
testcase_22 AC 781 ms
129,656 KB
testcase_23 AC 462 ms
108,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input=sys.stdin.readline
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