結果

問題 No.1637 Easy Tree Query
ユーザー kohei2019kohei2019
提出日時 2022-06-26 09:46:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 179,968 KB
最終ジャッジ日時 2024-11-16 10:05:36
合計ジャッジ時間 11,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 256 ms
97,792 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 169 ms
84,100 KB
testcase_05 AC 233 ms
89,216 KB
testcase_06 AC 183 ms
85,308 KB
testcase_07 AC 131 ms
80,128 KB
testcase_08 AC 147 ms
82,048 KB
testcase_09 AC 252 ms
89,940 KB
testcase_10 AC 160 ms
82,560 KB
testcase_11 AC 271 ms
94,080 KB
testcase_12 AC 249 ms
92,232 KB
testcase_13 AC 129 ms
79,872 KB
testcase_14 AC 213 ms
87,976 KB
testcase_15 AC 282 ms
93,056 KB
testcase_16 AC 284 ms
91,648 KB
testcase_17 AC 146 ms
81,376 KB
testcase_18 AC 220 ms
88,960 KB
testcase_19 AC 224 ms
88,648 KB
testcase_20 AC 265 ms
92,672 KB
testcase_21 AC 206 ms
86,004 KB
testcase_22 AC 335 ms
95,580 KB
testcase_23 AC 150 ms
82,176 KB
testcase_24 AC 182 ms
85,320 KB
testcase_25 AC 224 ms
89,520 KB
testcase_26 AC 273 ms
93,552 KB
testcase_27 AC 325 ms
96,896 KB
testcase_28 AC 203 ms
86,144 KB
testcase_29 AC 250 ms
90,368 KB
testcase_30 AC 176 ms
84,864 KB
testcase_31 AC 158 ms
84,516 KB
testcase_32 AC 165 ms
83,840 KB
testcase_33 AC 207 ms
87,652 KB
testcase_34 AC 284 ms
179,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
N,Q = map(int,input().split())
lsg = [[] for i in range(N)]
for i in range(N-1):
    a,b = map(int,input().split())
    a -= 1 
    b -= 1
    lsg[a].append(b)
    lsg[b].append(a)
lsq = [tuple(map(int,input().split())) for i in range(Q)]

lsc = [1]*(N)
def dfs(k,p):
    for j in lsg[k]:
        if j == p:
            continue
        lsc[k] += dfs(j,k)
    return lsc[k]
dfs(0,-1)

ans = 0
for i in range(Q):
    p,x = lsq[i]
    p -= 1
    ans += lsc[p]*x
    print(ans)
0