結果

問題 No.1637 Easy Tree Query
ユーザー wgrapewgrape
提出日時 2023-11-01 15:07:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 176,896 KB
最終ジャッジ日時 2024-09-25 17:58:16
合計ジャッジ時間 13,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 414 ms
89,088 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 209 ms
82,944 KB
testcase_05 AC 377 ms
81,536 KB
testcase_06 AC 288 ms
80,512 KB
testcase_07 AC 200 ms
77,184 KB
testcase_08 AC 190 ms
81,664 KB
testcase_09 AC 355 ms
86,272 KB
testcase_10 AC 233 ms
79,488 KB
testcase_11 AC 424 ms
87,296 KB
testcase_12 AC 411 ms
84,608 KB
testcase_13 AC 164 ms
79,616 KB
testcase_14 AC 274 ms
86,784 KB
testcase_15 AC 434 ms
87,808 KB
testcase_16 AC 341 ms
89,196 KB
testcase_17 AC 196 ms
79,360 KB
testcase_18 AC 357 ms
81,280 KB
testcase_19 AC 359 ms
82,688 KB
testcase_20 AC 413 ms
84,736 KB
testcase_21 AC 263 ms
83,200 KB
testcase_22 AC 452 ms
89,088 KB
testcase_23 AC 194 ms
80,384 KB
testcase_24 AC 248 ms
83,328 KB
testcase_25 AC 382 ms
80,896 KB
testcase_26 AC 428 ms
85,120 KB
testcase_27 AC 486 ms
88,704 KB
testcase_28 AC 302 ms
80,640 KB
testcase_29 AC 360 ms
84,864 KB
testcase_30 AC 201 ms
83,840 KB
testcase_31 AC 282 ms
76,544 KB
testcase_32 AC 239 ms
81,152 KB
testcase_33 AC 352 ms
79,616 KB
testcase_34 AC 321 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)
    
cnt = [0] * N # 自分を含む子の数
def dfs(v, p):
    c = 1
    for child in G[v]:
        if child == p:
            continue
        c += dfs(child, v)
    cnt[v] = c
    return c
    
dfs(0, -1)
        
ans = 0
for _ in range(Q):
    p,x = map(int,input().split())
    ans += cnt[p - 1] * x
    print(ans)
    
0