結果

問題 No.1103 Directed Length Sum
ユーザー ttrttr
提出日時 2020-07-03 22:34:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,485 ms / 3,000 ms
コード長 470 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 192,088 KB
最終ジャッジ日時 2024-09-17 04:16:03
合計ジャッジ時間 14,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,308 KB
testcase_01 AC 37 ms
54,036 KB
testcase_02 AC 690 ms
192,088 KB
testcase_03 AC 569 ms
191,960 KB
testcase_04 AC 841 ms
125,208 KB
testcase_05 AC 1,485 ms
157,872 KB
testcase_06 AC 561 ms
108,528 KB
testcase_07 AC 160 ms
84,432 KB
testcase_08 AC 226 ms
88,292 KB
testcase_09 AC 131 ms
81,440 KB
testcase_10 AC 307 ms
92,700 KB
testcase_11 AC 915 ms
129,688 KB
testcase_12 AC 550 ms
108,488 KB
testcase_13 AC 363 ms
93,328 KB
testcase_14 AC 108 ms
80,316 KB
testcase_15 AC 440 ms
102,032 KB
testcase_16 AC 1,039 ms
135,292 KB
testcase_17 AC 1,116 ms
137,948 KB
testcase_18 AC 282 ms
92,552 KB
testcase_19 AC 942 ms
130,992 KB
testcase_20 AC 135 ms
82,808 KB
testcase_21 AC 206 ms
87,212 KB
testcase_22 AC 769 ms
121,128 KB
testcase_23 AC 482 ms
103,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(N):
    if par[i] == -1:
        root = i
        break

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