結果

問題 No.1103 Directed Length Sum
ユーザー ntudantuda
提出日時 2024-11-22 22:59:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,748 ms / 3,000 ms
コード長 436 bytes
コンパイル時間 1,080 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 261,948 KB
最終ジャッジ日時 2024-11-22 23:00:09
合計ジャッジ時間 18,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 802 ms
191,376 KB
testcase_03 AC 733 ms
261,948 KB
testcase_04 AC 1,188 ms
140,220 KB
testcase_05 AC 1,748 ms
195,640 KB
testcase_06 AC 673 ms
120,320 KB
testcase_07 AC 177 ms
83,328 KB
testcase_08 AC 248 ms
87,808 KB
testcase_09 AC 134 ms
80,768 KB
testcase_10 AC 364 ms
93,696 KB
testcase_11 AC 1,022 ms
158,080 KB
testcase_12 AC 672 ms
116,992 KB
testcase_13 AC 346 ms
94,208 KB
testcase_14 AC 120 ms
79,488 KB
testcase_15 AC 542 ms
108,288 KB
testcase_16 AC 1,240 ms
158,336 KB
testcase_17 AC 1,266 ms
161,612 KB
testcase_18 AC 324 ms
94,848 KB
testcase_19 AC 1,126 ms
152,624 KB
testcase_20 AC 151 ms
81,536 KB
testcase_21 AC 229 ms
86,892 KB
testcase_22 AC 923 ms
144,128 KB
testcase_23 AC 549 ms
109,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N = int(input())
E = [[] for _ in range(N)]
D = [0] * N
for _ in range(N - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    E[a].append(b)
    D[b] += 1

ans = 0
Q = [D.index(0)]
Q2 = []
ans = 0
cnt = 0
cnt2 = 0
while Q:
    cnt2 += cnt
    cnt += 1
    ans += cnt2 * len(Q)
    ans %= MOD
    while Q:
        x = Q.pop()
        for y in E[x]:
            Q2.append(y)
    Q, Q2 = Q2, Q
print(ans)
0