結果

問題 No.1637 Easy Tree Query
ユーザー playerplayer
提出日時 2023-12-20 00:48:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 179,884 KB
最終ジャッジ日時 2024-09-27 09:04:54
合計ジャッジ時間 13,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,588 KB
testcase_01 AC 38 ms
52,444 KB
testcase_02 AC 455 ms
88,356 KB
testcase_03 AC 35 ms
52,632 KB
testcase_04 AC 191 ms
83,020 KB
testcase_05 AC 395 ms
81,252 KB
testcase_06 AC 283 ms
80,036 KB
testcase_07 AC 184 ms
77,240 KB
testcase_08 AC 168 ms
81,384 KB
testcase_09 AC 349 ms
85,952 KB
testcase_10 AC 234 ms
79,536 KB
testcase_11 AC 459 ms
87,372 KB
testcase_12 AC 454 ms
84,752 KB
testcase_13 AC 134 ms
79,632 KB
testcase_14 AC 277 ms
86,476 KB
testcase_15 AC 433 ms
87,772 KB
testcase_16 AC 354 ms
88,896 KB
testcase_17 AC 184 ms
79,392 KB
testcase_18 AC 372 ms
81,020 KB
testcase_19 AC 385 ms
82,324 KB
testcase_20 AC 464 ms
84,760 KB
testcase_21 AC 274 ms
82,804 KB
testcase_22 AC 497 ms
89,084 KB
testcase_23 AC 172 ms
80,372 KB
testcase_24 AC 252 ms
83,408 KB
testcase_25 AC 400 ms
80,752 KB
testcase_26 AC 480 ms
85,240 KB
testcase_27 AC 540 ms
88,380 KB
testcase_28 AC 309 ms
80,600 KB
testcase_29 AC 369 ms
84,164 KB
testcase_30 AC 183 ms
84,364 KB
testcase_31 AC 312 ms
76,416 KB
testcase_32 AC 230 ms
80,680 KB
testcase_33 AC 368 ms
79,644 KB
testcase_34 AC 305 ms
179,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import pypyjit
import sys
sys.setrecursionlimit(10**6)
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