結果

問題 No.1637 Easy Tree Query
ユーザー とりゐとりゐ
提出日時 2021-08-06 22:16:35
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,097 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,672 KB
最終ジャッジ日時 2024-09-17 03:53:17
合計ジャッジ時間 13,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 47 ms
54,528 KB
testcase_02 AC 442 ms
89,728 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 224 ms
84,096 KB
testcase_05 AC 399 ms
81,920 KB
testcase_06 AC 303 ms
81,408 KB
testcase_07 AC 213 ms
77,696 KB
testcase_08 AC 201 ms
82,304 KB
testcase_09 AC 362 ms
87,552 KB
testcase_10 AC 253 ms
79,872 KB
testcase_11 AC 444 ms
88,064 KB
testcase_12 AC 432 ms
85,632 KB
testcase_13 AC 180 ms
80,512 KB
testcase_14 AC 295 ms
87,040 KB
testcase_15 AC 424 ms
88,448 KB
testcase_16 AC 385 ms
89,984 KB
testcase_17 AC 209 ms
80,128 KB
testcase_18 AC 375 ms
81,920 KB
testcase_19 AC 374 ms
82,816 KB
testcase_20 AC 435 ms
85,632 KB
testcase_21 AC 289 ms
83,840 KB
testcase_22 AC 480 ms
90,240 KB
testcase_23 AC 206 ms
80,512 KB
testcase_24 AC 257 ms
84,096 KB
testcase_25 AC 394 ms
81,920 KB
testcase_26 AC 445 ms
86,016 KB
testcase_27 AC 488 ms
89,856 KB
testcase_28 AC 327 ms
81,280 KB
testcase_29 AC 390 ms
85,376 KB
testcase_30 AC 214 ms
85,120 KB
testcase_31 AC 306 ms
77,056 KB
testcase_32 AC 245 ms
81,920 KB
testcase_33 AC 378 ms
79,744 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from collections import deque,Counter
from sys import stdin

#sys.setrecursionlimit(10**7)
int1=lambda x: int(x)-1

inp=lambda :int(input())
mi=lambda :map(int,input().split())
li=lambda :list(mi())
mi1=lambda :map(int1,input().split())
li1=lambda :list(mi1())
mis=lambda :map(str,input().split())
lis=lambda :list(mis())

stinput=lambda :stdin.readline()[:-1]
stinp=lambda :int(stinput())
stmi=lambda :map(int, stdin.readline().split())
stli=lambda :list(stmi())
stmi1=lambda :map(int1, stdin.readline().split())
stli1=lambda :list(stmi1())
stmis=lambda :stdin.readline()[:-1]

pr=print

from collections import defaultdict
"""
#初期値 0
d=defaultdict(int)

#初期値 1
d=defaultdict(lambda:1)
"""

mod=10**9+7
Mod=998244353
INF=10**18
ans=0

n,q=mi()
edge=[[] for i in range(n)]
for i in range(n-1):
  a,b=mi1()
  edge[a].append(b)
  edge[b].append(a)

cnt=[0]*n
seen=[False]*n
def dfs(x):
  seen[x]=True
  tmp=1
  for i in edge[x]:
    if seen[i]==False:
      tmp+=dfs(i)
  cnt[x]=tmp
  return tmp

dfs(0)
for i in range(q):
  p,x=mi()
  ans+=cnt[p-1]*x
  print(ans)
0