結果

問題 No.1637 Easy Tree Query
ユーザー rlangevinrlangevin
提出日時 2022-12-31 22:49:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 506 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 92,604 KB
最終ジャッジ日時 2024-05-05 04:40:19
合計ジャッジ時間 9,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 163 ms
88,096 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 128 ms
82,304 KB
testcase_05 AC 144 ms
80,928 KB
testcase_06 AC 122 ms
80,000 KB
testcase_07 AC 90 ms
76,800 KB
testcase_08 AC 117 ms
81,280 KB
testcase_09 AC 161 ms
85,376 KB
testcase_10 AC 105 ms
78,848 KB
testcase_11 AC 191 ms
86,784 KB
testcase_12 AC 173 ms
84,224 KB
testcase_13 AC 98 ms
79,488 KB
testcase_14 AC 160 ms
85,996 KB
testcase_15 AC 191 ms
87,040 KB
testcase_16 AC 187 ms
88,448 KB
testcase_17 AC 101 ms
79,500 KB
testcase_18 AC 138 ms
80,768 KB
testcase_19 AC 143 ms
81,664 KB
testcase_20 AC 161 ms
84,096 KB
testcase_21 AC 137 ms
83,076 KB
testcase_22 AC 214 ms
88,448 KB
testcase_23 AC 106 ms
79,616 KB
testcase_24 AC 137 ms
82,788 KB
testcase_25 AC 143 ms
80,600 KB
testcase_26 AC 194 ms
84,736 KB
testcase_27 AC 237 ms
87,936 KB
testcase_28 AC 126 ms
80,328 KB
testcase_29 AC 158 ms
83,764 KB
testcase_30 AC 140 ms
83,456 KB
testcase_31 AC 92 ms
76,288 KB
testcase_32 AC 118 ms
80,640 KB
testcase_33 AC 128 ms
78,976 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def dfs(s, p=-1):
    n = 1
    for u in G[s]:
        if u == p:
            continue
        n += dfs(u, s)
    dp[s] = n
    return n

N, Q = map(int, readline().split())
G = [[] for i in range(N)]
for i in range(N - 1):
    A, B = map(int, readline().split())
    A, B = A - 1, B - 1
    G[A].append(B)
    G[B].append(A)
    
dp = [0] * N
dfs(0)
ans = 0
for _ in range(Q):
    p, x = map(int, readline().split())
    p -= 1
    ans += dp[p] * x
    print(ans)
0