結果

問題 No.1103 Directed Length Sum
ユーザー ntudantuda
提出日時 2024-11-22 22:59:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 261,956 KB
最終ジャッジ日時 2024-11-22 22:59:28
合計ジャッジ時間 16,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,584 KB
testcase_01 AC 44 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 717 ms
261,956 KB
testcase_04 AC 983 ms
139,712 KB
testcase_05 AC 1,661 ms
195,004 KB
testcase_06 AC 641 ms
120,704 KB
testcase_07 AC 176 ms
82,816 KB
testcase_08 AC 247 ms
87,296 KB
testcase_09 AC 142 ms
80,384 KB
testcase_10 AC 320 ms
94,336 KB
testcase_11 AC 1,037 ms
158,592 KB
testcase_12 AC 613 ms
116,864 KB
testcase_13 AC 357 ms
94,336 KB
testcase_14 AC 137 ms
79,232 KB
testcase_15 AC 482 ms
107,904 KB
testcase_16 AC 1,174 ms
158,192 KB
testcase_17 AC 1,214 ms
161,216 KB
testcase_18 AC 318 ms
94,464 KB
testcase_19 AC 1,135 ms
152,752 KB
testcase_20 AC 164 ms
81,792 KB
testcase_21 AC 237 ms
86,912 KB
testcase_22 AC 922 ms
143,744 KB
testcase_23 AC 541 ms
109,312 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)
    while Q:
        x = Q.pop()
        for y in E[x]:
            Q2.append(y)
    Q, Q2 = Q2, Q
print(ans)
0