結果

問題 No.1637 Easy Tree Query
ユーザー るこーそーるこーそー
提出日時 2024-09-25 11:04:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 171,116 KB
最終ジャッジ日時 2024-09-25 11:04:25
合計ジャッジ時間 12,536 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,808 KB
testcase_01 AC 39 ms
52,868 KB
testcase_02 AC 231 ms
88,476 KB
testcase_03 AC 39 ms
52,464 KB
testcase_04 AC 153 ms
82,768 KB
testcase_05 AC 192 ms
81,340 KB
testcase_06 AC 170 ms
80,072 KB
testcase_07 AC 102 ms
76,648 KB
testcase_08 AC 137 ms
81,308 KB
testcase_09 AC 226 ms
85,668 KB
testcase_10 AC 130 ms
79,180 KB
testcase_11 AC 267 ms
87,184 KB
testcase_12 AC 258 ms
85,172 KB
testcase_13 AC 115 ms
79,468 KB
testcase_14 AC 215 ms
86,244 KB
testcase_15 AC 250 ms
87,408 KB
testcase_16 AC 255 ms
88,416 KB
testcase_17 AC 128 ms
79,512 KB
testcase_18 AC 181 ms
81,084 KB
testcase_19 AC 199 ms
82,204 KB
testcase_20 AC 247 ms
84,524 KB
testcase_21 AC 173 ms
83,044 KB
testcase_22 AC 332 ms
88,880 KB
testcase_23 AC 125 ms
80,032 KB
testcase_24 AC 186 ms
83,152 KB
testcase_25 AC 218 ms
80,872 KB
testcase_26 AC 310 ms
85,136 KB
testcase_27 AC 348 ms
88,440 KB
testcase_28 AC 178 ms
80,420 KB
testcase_29 AC 250 ms
83,964 KB
testcase_30 AC 196 ms
83,856 KB
testcase_31 AC 145 ms
76,520 KB
testcase_32 AC 157 ms
81,008 KB
testcase_33 AC 166 ms
79,380 KB
testcase_34 AC 287 ms
171,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**5)
input=sys.stdin.readline
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

n,q=map(int,input().split())
graph=[[] for _ in range(n)]
for _ in range(n-1):
    u,v=map(lambda x:int(x)-1,input().split())
    graph[u].append(v)
    graph[v].append(u)

sub=[0]*n
def sub_calc(v,p):
    sub[v]=1
    for nv in graph[v]:
        if nv==p:continue
        sub[v]+=sub_calc(nv,v)
    return sub[v]

sub_calc(0,-1)

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