結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:53:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,439 ms / 3,000 ms
コード長 474 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 274,824 KB
最終ジャッジ日時 2024-10-08 11:04:27
合計ジャッジ時間 15,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 735 ms
200,064 KB
testcase_03 AC 676 ms
274,824 KB
testcase_04 AC 836 ms
128,896 KB
testcase_05 AC 1,439 ms
165,248 KB
testcase_06 AC 555 ms
111,280 KB
testcase_07 AC 158 ms
84,096 KB
testcase_08 AC 217 ms
89,080 KB
testcase_09 AC 120 ms
81,152 KB
testcase_10 AC 287 ms
92,928 KB
testcase_11 AC 921 ms
133,760 KB
testcase_12 AC 585 ms
111,232 KB
testcase_13 AC 288 ms
94,112 KB
testcase_14 AC 107 ms
80,256 KB
testcase_15 AC 467 ms
103,220 KB
testcase_16 AC 1,022 ms
141,312 KB
testcase_17 AC 1,085 ms
143,488 KB
testcase_18 AC 278 ms
93,280 KB
testcase_19 AC 976 ms
135,552 KB
testcase_20 AC 133 ms
82,560 KB
testcase_21 AC 204 ms
87,296 KB
testcase_22 AC 779 ms
124,288 KB
testcase_23 AC 476 ms
105,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=10**9+7
es=[[] for _ in range(n)]
par=[0]*n
for _ in range(n-1):
    a,b=map(int,input().split())
    es[a-1].append(b-1)
    par[b-1]=1

for i in range(n):
    if par[i]==0:
        root=i
        break
stack=[(root,0)]
ans=0
visited=[0]*n
while stack:
    now,depth=stack.pop()
    ans+=(depth%mod)*((depth+1)%mod)//2
    ans%=mod
    if visited[now]==0:
        visited[now]=1
        for e in es[now]:
            stack.append((e, depth+1))
print(ans)
0