結果

問題 No.1637 Easy Tree Query
ユーザー tcltktcltk
提出日時 2021-10-17 06:02:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 177,232 KB
最終ジャッジ日時 2024-09-17 19:37:22
合計ジャッジ時間 11,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
86,976 KB
testcase_01 AC 129 ms
86,884 KB
testcase_02 AC 262 ms
100,800 KB
testcase_03 AC 124 ms
86,756 KB
testcase_04 AC 222 ms
95,056 KB
testcase_05 AC 239 ms
93,072 KB
testcase_06 AC 213 ms
92,376 KB
testcase_07 AC 173 ms
90,044 KB
testcase_08 AC 197 ms
93,720 KB
testcase_09 AC 266 ms
98,176 KB
testcase_10 AC 201 ms
91,492 KB
testcase_11 AC 289 ms
99,020 KB
testcase_12 AC 270 ms
96,932 KB
testcase_13 AC 190 ms
91,504 KB
testcase_14 AC 267 ms
98,512 KB
testcase_15 AC 301 ms
99,544 KB
testcase_16 AC 317 ms
100,668 KB
testcase_17 AC 198 ms
91,408 KB
testcase_18 AC 227 ms
92,952 KB
testcase_19 AC 235 ms
94,652 KB
testcase_20 AC 273 ms
96,704 KB
testcase_21 AC 235 ms
95,192 KB
testcase_22 AC 326 ms
100,628 KB
testcase_23 AC 200 ms
92,288 KB
testcase_24 AC 228 ms
94,952 KB
testcase_25 AC 234 ms
92,960 KB
testcase_26 AC 276 ms
97,128 KB
testcase_27 AC 317 ms
100,204 KB
testcase_28 AC 218 ms
92,664 KB
testcase_29 AC 255 ms
95,948 KB
testcase_30 AC 232 ms
96,064 KB
testcase_31 AC 185 ms
89,576 KB
testcase_32 AC 214 ms
92,792 KB
testcase_33 AC 220 ms
91,332 KB
testcase_34 AC 314 ms
177,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


sys.setrecursionlimit(1000000)

# _INPUT = """3 1
# 1 2
# 1 3
# 1 5

# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

def dfs(G, count, parent, p):
    v = 1
    for p1 in G[p]:
        if p1 == parent:
            continue
        v += dfs(G, count, p, p1)
    count[p] = v
    return v

N, Q = map(int, input().split())
G = [list() for _ 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)

count = [0] * N
dfs(G, count, -1, 0)

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

0