結果

問題 No.1637 Easy Tree Query
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-06 21:27:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 176,896 KB
最終ジャッジ日時 2024-09-17 03:36:12
合計ジャッジ時間 12,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 399 ms
88,704 KB
testcase_03 AC 36 ms
51,456 KB
testcase_04 AC 194 ms
82,884 KB
testcase_05 AC 364 ms
81,664 KB
testcase_06 AC 284 ms
80,380 KB
testcase_07 AC 183 ms
77,436 KB
testcase_08 AC 172 ms
81,492 KB
testcase_09 AC 336 ms
85,760 KB
testcase_10 AC 218 ms
79,488 KB
testcase_11 AC 414 ms
86,956 KB
testcase_12 AC 392 ms
84,480 KB
testcase_13 AC 152 ms
79,560 KB
testcase_14 AC 271 ms
86,404 KB
testcase_15 AC 400 ms
87,296 KB
testcase_16 AC 344 ms
89,088 KB
testcase_17 AC 179 ms
79,360 KB
testcase_18 AC 345 ms
80,768 KB
testcase_19 AC 349 ms
82,176 KB
testcase_20 AC 407 ms
84,736 KB
testcase_21 AC 261 ms
83,328 KB
testcase_22 AC 446 ms
89,136 KB
testcase_23 AC 178 ms
80,000 KB
testcase_24 AC 228 ms
83,200 KB
testcase_25 AC 359 ms
80,768 KB
testcase_26 AC 419 ms
84,736 KB
testcase_27 AC 477 ms
88,704 KB
testcase_28 AC 285 ms
80,768 KB
testcase_29 AC 348 ms
84,480 KB
testcase_30 AC 200 ms
84,224 KB
testcase_31 AC 274 ms
76,288 KB
testcase_32 AC 228 ms
80,896 KB
testcase_33 AC 338 ms
79,724 KB
testcase_34 AC 275 ms
176,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
n, q = map(int, input().split())
G = [[] for i in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)
dp = [0] * n
def dfs(prev, cur):
    res = 1
    for nex in G[cur]:
        if nex != prev:
            res += dfs(cur, nex)
    dp[cur] = res
    return res
ans = 0
dfs(-1, 0)
for _ in range(q):
    p, x = map(int, input().split())
    ans += x * dp[p - 1]
    print(ans)
0