結果

問題 No.1637 Easy Tree Query
ユーザー lloyzlloyz
提出日時 2021-12-24 23:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 178,428 KB
最終ジャッジ日時 2024-09-19 22:52:04
合計ジャッジ時間 11,999 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 44 ms
53,760 KB
testcase_02 AC 379 ms
94,748 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 183 ms
87,548 KB
testcase_05 AC 353 ms
84,660 KB
testcase_06 AC 265 ms
83,328 KB
testcase_07 AC 167 ms
77,312 KB
testcase_08 AC 159 ms
85,504 KB
testcase_09 AC 287 ms
91,232 KB
testcase_10 AC 209 ms
81,904 KB
testcase_11 AC 360 ms
93,184 KB
testcase_12 AC 373 ms
90,368 KB
testcase_13 AC 149 ms
82,304 KB
testcase_14 AC 248 ms
90,496 KB
testcase_15 AC 356 ms
93,520 KB
testcase_16 AC 313 ms
95,232 KB
testcase_17 AC 173 ms
82,304 KB
testcase_18 AC 308 ms
85,248 KB
testcase_19 AC 323 ms
85,504 KB
testcase_20 AC 374 ms
89,088 KB
testcase_21 AC 237 ms
87,008 KB
testcase_22 AC 397 ms
95,232 KB
testcase_23 AC 170 ms
83,544 KB
testcase_24 AC 215 ms
87,808 KB
testcase_25 AC 340 ms
84,736 KB
testcase_26 AC 379 ms
90,804 KB
testcase_27 AC 423 ms
95,488 KB
testcase_28 AC 266 ms
84,096 KB
testcase_29 AC 317 ms
88,832 KB
testcase_30 AC 179 ms
88,832 KB
testcase_31 AC 284 ms
77,260 KB
testcase_32 AC 238 ms
85,120 KB
testcase_33 AC 329 ms
82,192 KB
testcase_34 AC 290 ms
178,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
sys.setrecursionlimit(10**6)

n, q = map(int, input().split())
edge = defaultdict(list)
for _ in range(n - 1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edge[a].append(b)
    edge[b].append(a)

V = [0 for _ in range(n)]
def dfs(curr, prev):
    V[curr] += 1
    for np in edge[curr]:
        if np == prev:
            continue
        dfs(np, curr)
        V[curr] += V[np]
dfs(0, -1)

ans = 0
for _ in range(q):
    p, x = map(int, input().split())
    p -= 1
    ans += x * V[p]
    print(ans)
0