結果

問題 No.1637 Easy Tree Query
ユーザー H20H20
提出日時 2021-08-06 21:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 177,912 KB
最終ジャッジ日時 2024-09-17 03:40:36
合計ジャッジ時間 10,833 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,128 KB
testcase_01 AC 33 ms
52,736 KB
testcase_02 AC 368 ms
89,388 KB
testcase_03 AC 33 ms
51,824 KB
testcase_04 AC 166 ms
83,216 KB
testcase_05 AC 329 ms
81,832 KB
testcase_06 AC 241 ms
80,312 KB
testcase_07 AC 159 ms
77,224 KB
testcase_08 AC 145 ms
81,664 KB
testcase_09 AC 288 ms
86,308 KB
testcase_10 AC 209 ms
79,360 KB
testcase_11 AC 380 ms
87,576 KB
testcase_12 AC 322 ms
85,448 KB
testcase_13 AC 129 ms
79,436 KB
testcase_14 AC 214 ms
87,520 KB
testcase_15 AC 318 ms
88,236 KB
testcase_16 AC 293 ms
89,728 KB
testcase_17 AC 171 ms
79,688 KB
testcase_18 AC 303 ms
81,588 KB
testcase_19 AC 291 ms
82,860 KB
testcase_20 AC 354 ms
84,932 KB
testcase_21 AC 216 ms
83,660 KB
testcase_22 AC 361 ms
89,476 KB
testcase_23 AC 149 ms
80,580 KB
testcase_24 AC 189 ms
83,392 KB
testcase_25 AC 310 ms
80,996 KB
testcase_26 AC 344 ms
85,484 KB
testcase_27 AC 375 ms
89,272 KB
testcase_28 AC 242 ms
81,040 KB
testcase_29 AC 323 ms
84,636 KB
testcase_30 AC 167 ms
84,496 KB
testcase_31 AC 268 ms
76,300 KB
testcase_32 AC 209 ms
81,316 KB
testcase_33 AC 304 ms
79,368 KB
testcase_34 AC 284 ms
177,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)

N,Q = map(int, input().split())
L = [[] for i in range(N+1)]
for i in range(N-1):
    a,b = map(int, input().split())
    L[a].append(b)
    L[b].append(a)
C = [0]*(N+1)

DE = [0]*(N+1)
def dfs(i,b):
    for l in L[i]:
        if l==b:
            continue
        dfs(l,i)
    DE[i]+=1
    DE[b]+=DE[i]

dfs(1,0)

ans = 0

for i in range(Q):
    p,x = map(int, input().split())
    ans += DE[p]*x
    print(ans)
0