結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,276 KB
testcase_01 AC 37 ms
52,544 KB
testcase_02 AC 760 ms
200,312 KB
testcase_03 AC 704 ms
274,828 KB
testcase_04 AC 888 ms
129,180 KB
testcase_05 AC 1,603 ms
165,752 KB
testcase_06 AC 596 ms
111,088 KB
testcase_07 AC 166 ms
84,348 KB
testcase_08 AC 240 ms
88,840 KB
testcase_09 AC 126 ms
81,340 KB
testcase_10 AC 317 ms
93,288 KB
testcase_11 AC 1,001 ms
133,956 KB
testcase_12 AC 614 ms
111,112 KB
testcase_13 AC 316 ms
94,192 KB
testcase_14 AC 115 ms
80,460 KB
testcase_15 AC 475 ms
103,576 KB
testcase_16 AC 1,146 ms
141,012 KB
testcase_17 AC 1,171 ms
143,916 KB
testcase_18 AC 304 ms
93,128 KB
testcase_19 AC 1,048 ms
135,276 KB
testcase_20 AC 145 ms
82,612 KB
testcase_21 AC 215 ms
87,680 KB
testcase_22 AC 814 ms
124,536 KB
testcase_23 AC 489 ms
105,316 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)//2)%mod
    ans%=mod
    if visited[now]==0:
        visited[now]=1
        for e in es[now]:
            stack.append((e, depth+1))
print(ans)
0