結果
問題 | No.1637 Easy Tree Query |
ユーザー | MasKoaTS |
提出日時 | 2021-10-03 18:19:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 374 ms / 2,000 ms |
コード長 | 1,078 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 178,560 KB |
最終ジャッジ日時 | 2024-07-21 13:19:41 |
合計ジャッジ時間 | 14,357 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
86,528 KB |
testcase_01 | AC | 128 ms
86,272 KB |
testcase_02 | AC | 306 ms
114,304 KB |
testcase_03 | AC | 126 ms
86,400 KB |
testcase_04 | AC | 238 ms
96,640 KB |
testcase_05 | AC | 281 ms
104,960 KB |
testcase_06 | AC | 243 ms
99,672 KB |
testcase_07 | AC | 201 ms
93,316 KB |
testcase_08 | AC | 224 ms
95,616 KB |
testcase_09 | AC | 314 ms
105,472 KB |
testcase_10 | AC | 221 ms
95,744 KB |
testcase_11 | AC | 346 ms
109,696 KB |
testcase_12 | AC | 324 ms
108,416 KB |
testcase_13 | AC | 202 ms
93,184 KB |
testcase_14 | AC | 285 ms
101,504 KB |
testcase_15 | AC | 341 ms
108,544 KB |
testcase_16 | AC | 344 ms
106,752 KB |
testcase_17 | AC | 214 ms
93,696 KB |
testcase_18 | AC | 284 ms
104,064 KB |
testcase_19 | AC | 282 ms
104,448 KB |
testcase_20 | AC | 329 ms
108,800 KB |
testcase_21 | AC | 263 ms
100,736 KB |
testcase_22 | AC | 374 ms
111,744 KB |
testcase_23 | AC | 211 ms
95,232 KB |
testcase_24 | AC | 252 ms
98,656 KB |
testcase_25 | AC | 284 ms
104,192 KB |
testcase_26 | AC | 321 ms
109,568 KB |
testcase_27 | AC | 366 ms
113,280 KB |
testcase_28 | AC | 261 ms
100,608 KB |
testcase_29 | AC | 300 ms
105,088 KB |
testcase_30 | AC | 250 ms
97,408 KB |
testcase_31 | AC | 226 ms
99,584 KB |
testcase_32 | AC | 241 ms
97,844 KB |
testcase_33 | AC | 268 ms
103,040 KB |
testcase_34 | AC | 324 ms
178,560 KB |
ソースコード
import itertools as iter import collections as coll import heapq as hq import bisect as bis from decimal import Decimal as dec from copy import deepcopy as dcopy import math import sys sys.setrecursionlimit(10**6) def input(): return sys.stdin.readline().rstrip() def getN(): return int(sys.stdin.readline().rstrip()) def getNs(): return map(int,sys.stdin.readline().rstrip().split()) def getList(): return list(map(int,sys.stdin.readline().rstrip().split())) def strinps(n): return [sys.stdin.readline().rstrip() for _ in range(n)] pi = 3.141592653589793 mod = 10**9+7 MOD = 998244353 INF = math.inf dx = [1,0,-1,0]; dy = [0,1,0,-1] """ Main Code """ n,q = getNs() route = [[] for _ in [0]*n] for _ in [0]*(n-1): a,b = getNs() a -= 1; b -= 1 route[a].append(b) route[b].append(a) visited = [False]*n cnt = [0]*n def dfs(v): res = 1 for nv in route[v]: if not(visited[nv]): visited[nv] = True res += dfs(nv) cnt[v] = res return res visited[0] = True dfs(0) ans = 0 query = [getList() for _ in [0]*q] for p,x in query: ans += x*cnt[p-1] print(ans)