結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,988 KB
testcase_01 AC 38 ms
52,804 KB
testcase_02 AC 436 ms
88,684 KB
testcase_03 AC 38 ms
52,984 KB
testcase_04 AC 203 ms
83,068 KB
testcase_05 AC 369 ms
81,568 KB
testcase_06 AC 271 ms
80,540 KB
testcase_07 AC 214 ms
76,920 KB
testcase_08 AC 177 ms
81,652 KB
testcase_09 AC 337 ms
86,192 KB
testcase_10 AC 227 ms
79,228 KB
testcase_11 AC 452 ms
86,924 KB
testcase_12 AC 400 ms
84,536 KB
testcase_13 AC 162 ms
79,324 KB
testcase_14 AC 299 ms
86,432 KB
testcase_15 AC 400 ms
87,472 KB
testcase_16 AC 349 ms
89,032 KB
testcase_17 AC 188 ms
79,452 KB
testcase_18 AC 353 ms
81,276 KB
testcase_19 AC 346 ms
82,492 KB
testcase_20 AC 416 ms
84,952 KB
testcase_21 AC 284 ms
83,032 KB
testcase_22 AC 450 ms
89,084 KB
testcase_23 AC 181 ms
80,076 KB
testcase_24 AC 232 ms
83,512 KB
testcase_25 AC 389 ms
81,064 KB
testcase_26 AC 423 ms
84,960 KB
testcase_27 AC 509 ms
88,508 KB
testcase_28 AC 290 ms
80,612 KB
testcase_29 AC 355 ms
84,392 KB
testcase_30 AC 207 ms
84,204 KB
testcase_31 AC 299 ms
76,076 KB
testcase_32 AC 227 ms
80,816 KB
testcase_33 AC 340 ms
79,260 KB
testcase_34 AC 293 ms
178,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**5)

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