結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:43:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,593 ms / 3,000 ms
コード長 393 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 263,692 KB
最終ジャッジ日時 2024-10-08 10:36:14
合計ジャッジ時間 15,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 731 ms
192,512 KB
testcase_03 AC 679 ms
263,692 KB
testcase_04 AC 881 ms
124,684 KB
testcase_05 AC 1,593 ms
157,440 KB
testcase_06 AC 543 ms
108,288 KB
testcase_07 AC 154 ms
83,712 KB
testcase_08 AC 221 ms
87,964 KB
testcase_09 AC 127 ms
80,900 KB
testcase_10 AC 300 ms
91,904 KB
testcase_11 AC 982 ms
129,204 KB
testcase_12 AC 595 ms
108,100 KB
testcase_13 AC 321 ms
92,736 KB
testcase_14 AC 117 ms
79,616 KB
testcase_15 AC 461 ms
100,864 KB
testcase_16 AC 1,085 ms
135,604 KB
testcase_17 AC 1,116 ms
137,796 KB
testcase_18 AC 293 ms
91,596 KB
testcase_19 AC 960 ms
130,560 KB
testcase_20 AC 137 ms
82,048 KB
testcase_21 AC 193 ms
86,260 KB
testcase_22 AC 766 ms
120,216 KB
testcase_23 AC 443 ms
103,424 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
while stack:
    now,depth=stack.pop()
    ans+=depth*(depth+1)//2
    ans%=mod
    for e in es[now]:
        stack.append((e, depth+1))
print(ans)
0