結果

問題 No.1637 Easy Tree Query
ユーザー wgrapewgrape
提出日時 2023-11-01 15:05:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 496 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-09-25 17:58:02
合計ジャッジ時間 15,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 423 ms
88,832 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 204 ms
82,944 KB
testcase_05 AC 375 ms
81,152 KB
testcase_06 AC 289 ms
80,512 KB
testcase_07 AC 203 ms
77,440 KB
testcase_08 AC 187 ms
81,536 KB
testcase_09 AC 339 ms
85,888 KB
testcase_10 AC 232 ms
79,488 KB
testcase_11 AC 429 ms
87,296 KB
testcase_12 AC 403 ms
84,480 KB
testcase_13 AC 168 ms
79,616 KB
testcase_14 AC 278 ms
86,528 KB
testcase_15 AC 415 ms
87,424 KB
testcase_16 AC 364 ms
88,832 KB
testcase_17 AC 199 ms
79,488 KB
testcase_18 AC 367 ms
81,024 KB
testcase_19 AC 357 ms
82,816 KB
testcase_20 AC 426 ms
84,608 KB
testcase_21 AC 275 ms
83,200 KB
testcase_22 AC 456 ms
88,832 KB
testcase_23 AC 194 ms
80,896 KB
testcase_24 AC 252 ms
83,456 KB
testcase_25 AC 372 ms
81,152 KB
testcase_26 AC 432 ms
85,120 KB
testcase_27 AC 482 ms
88,576 KB
testcase_28 AC 300 ms
80,896 KB
testcase_29 AC 356 ms
84,608 KB
testcase_30 AC 216 ms
83,840 KB
testcase_31 AC 280 ms
76,288 KB
testcase_32 AC 241 ms
81,152 KB
testcase_33 AC 365 ms
79,616 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
G = [[] for i in range(N)]

for _ in range(N - 1):
    a,b = map(int,input().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)
    
cnt = [0] * N # 自分を含む子の数
def dfs(v, p):
    c = 1
    for child in G[v]:
        if child == p:
            continue
        c += dfs(child, v)
    cnt[v] = c
    return c
    
dfs(0, -1)
        
ans = 0
for _ in range(Q):
    p,x = map(int,input().split())
    ans += cnt[p - 1] * x
    print(ans)
    
0