結果

問題 No.1103 Directed Length Sum
ユーザー ttrttr
提出日時 2020-07-03 22:37:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,192 ms / 3,000 ms
コード長 465 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 191,364 KB
最終ジャッジ日時 2024-09-17 04:18:52
合計ジャッジ時間 12,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,456 KB
testcase_01 AC 39 ms
55,220 KB
testcase_02 AC 417 ms
191,364 KB
testcase_03 AC 338 ms
186,792 KB
testcase_04 AC 686 ms
124,716 KB
testcase_05 AC 1,192 ms
157,180 KB
testcase_06 AC 460 ms
107,684 KB
testcase_07 AC 132 ms
82,740 KB
testcase_08 AC 182 ms
87,508 KB
testcase_09 AC 104 ms
80,932 KB
testcase_10 AC 243 ms
92,324 KB
testcase_11 AC 731 ms
129,304 KB
testcase_12 AC 459 ms
108,040 KB
testcase_13 AC 249 ms
92,456 KB
testcase_14 AC 89 ms
79,976 KB
testcase_15 AC 367 ms
101,252 KB
testcase_16 AC 843 ms
135,000 KB
testcase_17 AC 887 ms
137,288 KB
testcase_18 AC 228 ms
91,984 KB
testcase_19 AC 785 ms
130,008 KB
testcase_20 AC 115 ms
81,576 KB
testcase_21 AC 177 ms
86,776 KB
testcase_22 AC 645 ms
120,628 KB
testcase_23 AC 391 ms
102,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
from collections import deque
N = int(input())
E = [[] for _ in range(N)]
par = [-1]*N
for _ in range(N-1):
    a,b = map(int, input().split())
    E[a-1].append(b-1)
    par[b-1] = a-1

root = par.index(-1)

ans = 0
mod = 10**9+7
q = deque()
q.append(root)
while q:
    temp = q.pop()
    p = temp%N
    rnk = temp//N
    ans += rnk*(rnk+1)//2
    ans %= mod
    for v in E[p]:
        q.append((rnk+1)*N+v)

print(ans)
0