結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:53:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 468 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 274,572 KB
最終ジャッジ日時 2024-10-08 11:03:06
合計ジャッジ時間 16,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 WA -
testcase_03 AC 717 ms
274,572 KB
testcase_04 AC 896 ms
129,336 KB
testcase_05 AC 1,587 ms
165,272 KB
testcase_06 AC 629 ms
110,880 KB
testcase_07 AC 167 ms
84,420 KB
testcase_08 AC 234 ms
89,216 KB
testcase_09 AC 126 ms
80,896 KB
testcase_10 AC 308 ms
93,772 KB
testcase_11 AC 1,003 ms
134,144 KB
testcase_12 AC 591 ms
111,104 KB
testcase_13 AC 315 ms
94,080 KB
testcase_14 AC 131 ms
80,256 KB
testcase_15 AC 515 ms
103,296 KB
testcase_16 AC 1,207 ms
140,788 KB
testcase_17 AC 1,241 ms
143,416 KB
testcase_18 AC 312 ms
93,488 KB
testcase_19 AC 1,068 ms
135,504 KB
testcase_20 AC 143 ms
82,992 KB
testcase_21 AC 214 ms
87,552 KB
testcase_22 AC 882 ms
124,544 KB
testcase_23 AC 515 ms
105,472 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*(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