結果

問題 No.1637 Easy Tree Query
ユーザー るこーそーるこーそー
提出日時 2024-09-25 11:04:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 435 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,240 KB
最終ジャッジ日時 2024-09-25 11:04:50
合計ジャッジ時間 12,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,952 KB
testcase_01 AC 36 ms
52,596 KB
testcase_02 AC 419 ms
88,816 KB
testcase_03 AC 38 ms
52,960 KB
testcase_04 AC 184 ms
82,824 KB
testcase_05 AC 344 ms
81,256 KB
testcase_06 AC 256 ms
80,448 KB
testcase_07 AC 190 ms
77,128 KB
testcase_08 AC 159 ms
81,872 KB
testcase_09 AC 292 ms
86,268 KB
testcase_10 AC 206 ms
79,272 KB
testcase_11 AC 376 ms
86,844 KB
testcase_12 AC 375 ms
84,728 KB
testcase_13 AC 151 ms
79,796 KB
testcase_14 AC 258 ms
86,380 KB
testcase_15 AC 378 ms
87,172 KB
testcase_16 AC 312 ms
89,256 KB
testcase_17 AC 176 ms
79,336 KB
testcase_18 AC 332 ms
81,384 KB
testcase_19 AC 348 ms
82,392 KB
testcase_20 AC 379 ms
84,584 KB
testcase_21 AC 246 ms
83,156 KB
testcase_22 AC 411 ms
88,716 KB
testcase_23 AC 198 ms
80,140 KB
testcase_24 AC 221 ms
83,004 KB
testcase_25 AC 343 ms
80,968 KB
testcase_26 AC 380 ms
85,176 KB
testcase_27 AC 456 ms
88,496 KB
testcase_28 AC 275 ms
80,684 KB
testcase_29 AC 326 ms
84,136 KB
testcase_30 AC 199 ms
83,880 KB
testcase_31 AC 269 ms
75,940 KB
testcase_32 AC 212 ms
80,988 KB
testcase_33 AC 332 ms
79,652 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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