結果

問題 No.1103 Directed Length Sum
ユーザー 👑 rin204rin204
提出日時 2020-08-13 07:50:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 236,520 KB
最終ジャッジ日時 2024-10-09 19:00:03
合計ジャッジ時間 15,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,704 KB
testcase_01 AC 39 ms
53,948 KB
testcase_02 WA -
testcase_03 AC 695 ms
236,520 KB
testcase_04 AC 891 ms
134,452 KB
testcase_05 AC 1,606 ms
177,524 KB
testcase_06 AC 606 ms
110,388 KB
testcase_07 AC 179 ms
83,972 KB
testcase_08 AC 262 ms
88,268 KB
testcase_09 AC 140 ms
80,968 KB
testcase_10 AC 341 ms
93,620 KB
testcase_11 AC 983 ms
138,180 KB
testcase_12 AC 600 ms
110,444 KB
testcase_13 AC 331 ms
93,676 KB
testcase_14 AC 131 ms
80,048 KB
testcase_15 AC 482 ms
102,352 KB
testcase_16 AC 1,116 ms
145,672 KB
testcase_17 AC 1,163 ms
148,072 KB
testcase_18 AC 316 ms
93,488 KB
testcase_19 AC 1,018 ms
140,524 KB
testcase_20 AC 155 ms
82,576 KB
testcase_21 AC 215 ms
87,972 KB
testcase_22 AC 829 ms
128,092 KB
testcase_23 AC 508 ms
104,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
MOD = 10 ** 9 + 7

n = int(input())
root_cand = [True for _ in range(n)]
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    edges[a - 1].append(b - 1)
    root_cand[b - 1] = False
root = root_cand.index(True)

ans = 0
queue = deque()
queue.append(root)
queue.append(0)
while queue:
    pos = queue.popleft()
    d = queue.popleft()
    ans += d * (d + 1) // 2
    for n_pos in edges[pos]:
        queue.append(n_pos)
        queue.append(d + 1)
print(ans)
        
0