結果

問題 No.1637 Easy Tree Query
ユーザー yvay5cqeyvay5cqe
提出日時 2021-08-18 21:28:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 174,976 KB
最終ジャッジ日時 2024-10-11 21:26:38
合計ジャッジ時間 10,696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 315 ms
106,112 KB
testcase_03 AC 39 ms
51,456 KB
testcase_04 AC 187 ms
88,192 KB
testcase_05 AC 254 ms
92,672 KB
testcase_06 AC 206 ms
87,680 KB
testcase_07 AC 142 ms
79,872 KB
testcase_08 AC 174 ms
85,760 KB
testcase_09 AC 259 ms
96,896 KB
testcase_10 AC 178 ms
84,992 KB
testcase_11 AC 313 ms
100,864 KB
testcase_12 AC 291 ms
97,536 KB
testcase_13 AC 151 ms
82,432 KB
testcase_14 AC 239 ms
94,464 KB
testcase_15 AC 306 ms
100,608 KB
testcase_16 AC 287 ms
99,584 KB
testcase_17 AC 159 ms
83,072 KB
testcase_18 AC 241 ms
92,160 KB
testcase_19 AC 246 ms
92,544 KB
testcase_20 AC 292 ms
98,048 KB
testcase_21 AC 223 ms
91,008 KB
testcase_22 AC 336 ms
103,936 KB
testcase_23 AC 166 ms
84,096 KB
testcase_24 AC 198 ms
89,600 KB
testcase_25 AC 238 ms
92,160 KB
testcase_26 AC 291 ms
98,560 KB
testcase_27 AC 337 ms
104,192 KB
testcase_28 AC 208 ms
88,960 KB
testcase_29 AC 249 ms
94,720 KB
testcase_30 AC 187 ms
89,600 KB
testcase_31 AC 164 ms
84,096 KB
testcase_32 AC 185 ms
86,784 KB
testcase_33 AC 218 ms
89,728 KB
testcase_34 AC 311 ms
174,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
N, Q = map(int, input().split())
ab = [tuple(map(int, input().split())) for _ in range(N-1)]
qx = [tuple(map(int, input().split())) for _ in range(Q)]

g = [[] for _ in range(N)]

for a, b in ab:
    g[a-1].append(b-1)
    g[b-1].append(a-1)

cnts = [0] * N


def dfs(now, prev):
    cnt = 1
    for nx in g[now]:
        if nx == prev:
            continue
        cnt += dfs(nx, now)
    cnts[now] = cnt
    return cnt


dfs(0, -1)

ans = 0
for q, x in qx:
    ans += cnts[q-1] * x
    print(ans)
0