結果

問題 No.1637 Easy Tree Query
ユーザー playerplayer
提出日時 2023-12-20 00:42:27
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 504 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 92,304 KB
最終ジャッジ日時 2024-09-27 09:04:34
合計ジャッジ時間 16,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,292 KB
testcase_01 AC 38 ms
53,140 KB
testcase_02 AC 568 ms
88,568 KB
testcase_03 AC 37 ms
53,596 KB
testcase_04 AC 232 ms
83,120 KB
testcase_05 AC 477 ms
81,112 KB
testcase_06 AC 345 ms
80,504 KB
testcase_07 AC 211 ms
76,992 KB
testcase_08 AC 207 ms
81,972 KB
testcase_09 AC 446 ms
86,180 KB
testcase_10 AC 265 ms
79,192 KB
testcase_11 AC 544 ms
87,260 KB
testcase_12 AC 520 ms
84,536 KB
testcase_13 AC 166 ms
79,516 KB
testcase_14 AC 352 ms
86,088 KB
testcase_15 AC 553 ms
87,604 KB
testcase_16 AC 446 ms
88,572 KB
testcase_17 AC 207 ms
79,584 KB
testcase_18 AC 450 ms
81,176 KB
testcase_19 AC 460 ms
82,120 KB
testcase_20 AC 552 ms
84,428 KB
testcase_21 AC 317 ms
83,180 KB
testcase_22 AC 600 ms
88,936 KB
testcase_23 AC 208 ms
80,064 KB
testcase_24 AC 292 ms
83,412 KB
testcase_25 AC 481 ms
81,168 KB
testcase_26 AC 576 ms
85,128 KB
testcase_27 AC 628 ms
88,708 KB
testcase_28 AC 371 ms
80,332 KB
testcase_29 AC 461 ms
83,812 KB
testcase_30 AC 245 ms
84,320 KB
testcase_31 AC 376 ms
76,712 KB
testcase_32 AC 275 ms
81,040 KB
testcase_33 AC 451 ms
79,508 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

n,q = map(int,input().split())

edge = [[] for _ in range(n)]
for _ in range(n-1):
    a,b = map(int,input().split())
    edge[a-1].append(b-1)
    edge[b-1].append(a-1)
    
cnt = [0]*n

def dfs(x,p):
    ret = 1
    for c in edge[x]:
        if c == p:
            continue
        ret += dfs(c,x)
    cnt[x] += ret
    return ret

dfs(0,-1)

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