結果

問題 No.1637 Easy Tree Query
ユーザー tobusakanatobusakana
提出日時 2022-11-27 14:13:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 163,464 KB
最終ジャッジ日時 2024-10-04 02:17:43
合計ジャッジ時間 8,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,288 KB
testcase_01 AC 37 ms
52,620 KB
testcase_02 AC 193 ms
88,260 KB
testcase_03 AC 37 ms
53,228 KB
testcase_04 AC 129 ms
82,764 KB
testcase_05 AC 175 ms
81,216 KB
testcase_06 AC 138 ms
79,708 KB
testcase_07 AC 95 ms
76,860 KB
testcase_08 AC 117 ms
81,292 KB
testcase_09 AC 190 ms
85,816 KB
testcase_10 AC 117 ms
79,076 KB
testcase_11 AC 232 ms
86,928 KB
testcase_12 AC 206 ms
84,736 KB
testcase_13 AC 99 ms
79,476 KB
testcase_14 AC 178 ms
85,640 KB
testcase_15 AC 227 ms
87,624 KB
testcase_16 AC 226 ms
88,556 KB
testcase_17 AC 113 ms
79,912 KB
testcase_18 AC 163 ms
81,176 KB
testcase_19 AC 178 ms
81,888 KB
testcase_20 AC 215 ms
84,652 KB
testcase_21 AC 159 ms
82,792 KB
testcase_22 AC 266 ms
88,912 KB
testcase_23 AC 113 ms
80,040 KB
testcase_24 AC 154 ms
82,768 KB
testcase_25 AC 176 ms
80,636 KB
testcase_26 AC 222 ms
85,300 KB
testcase_27 AC 266 ms
88,404 KB
testcase_28 AC 150 ms
80,096 KB
testcase_29 AC 189 ms
83,664 KB
testcase_30 AC 139 ms
83,672 KB
testcase_31 AC 123 ms
76,676 KB
testcase_32 AC 129 ms
80,664 KB
testcase_33 AC 157 ms
79,360 KB
testcase_34 AC 230 ms
163,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

sys.setrecursionlimit(10 ** 6) 
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

N,Q = map(int,readline().split())
G = [[] for i in range(N)]
for _ in range(N - 1):
    a,b = map(int,readline().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)

cnt = [0] * N
def dfs(x, p): # 自分含む子の数を返す
    res = 1
    for child in G[x]:
        if child == p:
            continue
        res += dfs(child, x)
    cnt[x] = res
    return res
    
dfs(0, -1)

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